Added in API level 1

TextUtils.SimpleStringSplitter


public static class TextUtils.SimpleStringSplitter
extends Object implements Iterator<String>, TextUtils.StringSplitter

java.lang.Object
   ↳ android.text.TextUtils.SimpleStringSplitter


A simple string splitter.

If the final character in the string to split is the delimiter then no empty string will be returned for the empty string after that delimeter. That is, splitting "a,b," on comma will return "a", "b", not "a", "b", "".

Summary

Public constructors

SimpleStringSplitter(char delimiter)

Initializes the splitter.

Public methods

boolean hasNext()

Returns true if the iteration has more elements.

Iterator<String> iterator()

Returns an iterator over elements of type T.

String next()

Returns the next element in the iteration.

void remove()

Removes from the underlying collection the last element returned by this iterator (optional operation).

void setString(String string)

Sets the string to split

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

default void forEachRemaining(Consumer<? super E> action)

Performs the given action for each remaining element until all elements have been processed or the action throws an exception.

abstract boolean hasNext()

Returns true if the iteration has more elements.

abstract String next()

Returns the next element in the iteration.

default void remove()

Removes from the underlying collection the last element returned by this iterator (optional operation).

abstract void setString(String string)
default void forEach(Consumer<? super T> action)

Performs the given action for each element of the Iterable until all elements have been processed or the action throws an exception.

abstract Iterator<String> iterator()

Returns an iterator over elements of type T.

default Spliterator<String> spliterator()

Creates a Spliterator over the elements described by this Iterable.

Public constructors

SimpleStringSplitter

Added in API level 1
public SimpleStringSplitter (char delimiter)

Initializes the splitter. setString may be called later.

Parameters
delimiter char: the delimeter on which to split

Public methods

hasNext

Added in API level 1
public boolean hasNext ()

Returns true if the iteration has more elements. (In other words, returns true if next() would return an element rather than throwing an exception.)

Returns
boolean true if the iteration has more elements

iterator

Added in API level 1
public Iterator<String> iterator ()

Returns an iterator over elements of type T.

Returns
Iterator<String> an Iterator.

next

Added in API level 1
public String next ()

Returns the next element in the iteration.

Returns
String the next element in the iteration

remove

Added in API level 1
public void remove ()

Removes from the underlying collection the last element returned by this iterator (optional operation). This method can be called only once per call to next().

The behavior of an iterator is unspecified if the underlying collection is modified while the iteration is in progress in any way other than by calling this method, unless an overriding class has specified a concurrent modification policy.

The behavior of an iterator is unspecified if this method is called after a call to the forEachRemaining method.

setString

Added in API level 1
public void setString (String string)

Sets the string to split

Parameters
string String: the string to split