# Print output for @column tags ?>
public
static
class
TextUtils.SimpleStringSplitter
extends Object
implements
TextUtils.StringSplitter,
Iterator<String>
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", "".
Public constructors | |
---|---|
SimpleStringSplitter(char delimiter)
Initializes the splitter. |
Public methods | |
---|---|
boolean
|
hasNext()
Returns |
Iterator<String>
|
iterator()
Returns an iterator over elements of type |
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 | |
---|---|
public SimpleStringSplitter (char delimiter)
Initializes the splitter. setString may be called later.
Parameters | |
---|---|
delimiter |
char : the delimeter on which to split |
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 |
public Iterator<String> iterator ()
Returns an iterator over elements of type T
.
Returns | |
---|---|
Iterator<String> |
an Iterator. |
public String next ()
Returns the next element in the iteration.
Returns | |
---|---|
String |
the next element in the iteration |
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.
public void setString (String string)
Sets the string to split
Parameters | |
---|---|
string |
String : the string to split |