public interface CharSequenceTokenizerSource extends TokenizerSource, java.lang.CharSequence
Extension of the TokenizerSource
interface and the CharSequence
interface that was introduced in J2SE 1.4. The CharSequence
interface provides a safe way to access character data for reading without
exposing internal buffers or copying. The drawback is that it is only available
with Java versions from 1.4, while there are still lots of Java 1.3 and even
older environments in use.
While implementations of this interface can be used by all Tokenizer
,
specialized tokenizers can take advantage of the generally faster methods
provided by the CharSequence
interface.
TokenizerSource
read