| java.lang.Object net.sf.saxon.expr.StringTokenIterator
StringTokenIterator | public class StringTokenIterator implements SequenceIterator(Code) | | StringTokenIterator: breaks a string up into tokens,
and returns the tokens as a sequence of strings.
|
StringTokenIterator | public StringTokenIterator(String string)(Code) | | Construct a StringTokenIterator that will break the supplied
string into tokens at whitespace boundaries
|
StringTokenIterator | public StringTokenIterator(String string, String delimiters)(Code) | | Construct a StringTokenIterator that will break the supplied
string into tokens at any of the delimiter characters included in the
delimiter string.
|
getProperties | public int getProperties()(Code) | | Get properties of this iterator, as a bit-significant integer.
the properties of this iterator. This will be some combination ofproperties such as GROUNDED, LAST_POSITION_FINDER,and LOOKAHEAD. It is alwaysacceptable to return the value zero, indicating that there are no known special properties.It is acceptable for the properties of the iterator to change depending on its state. |
position | public int position()(Code) | | |
|
|