Package net.sf.saxon.regex
Class JTokenIterator
java.lang.Object
net.sf.saxon.regex.JTokenIterator
- All Implemented Interfaces:
Closeable,AutoCloseable,SequenceIterator,AtomicIterator<StringValue>,UnfailingIterator
A JTokenIterator is an iterator over the strings that result from tokenizing a string using
a regular expression, in this case a regular expression evaluated using the JDK regex engine
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.sf.saxon.om.SequenceIterator
SequenceIterator.Property -
Constructor Summary
ConstructorsConstructorDescriptionJTokenIterator(CharSequence input, Pattern pattern) Construct a JTokenIterator. -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface net.sf.saxon.om.SequenceIterator
close, forEachOrFail, getProperties, materializeMethods inherited from interface net.sf.saxon.tree.iter.UnfailingIterator
forEach, toList
-
Constructor Details
-
JTokenIterator
Construct a JTokenIterator.
-
-
Method Details
-
next
Description copied from interface:AtomicIteratorGet the next atomic value in the sequence.- Specified by:
nextin interfaceAtomicIterator<StringValue>- Specified by:
nextin interfaceSequenceIterator- Specified by:
nextin interfaceUnfailingIterator- Returns:
- the next Item. If there are no more items, return null.
-