Package org.apache.jena.riot.tokens
Class TokenizerText
- java.lang.Object
-
- org.apache.jena.riot.tokens.TokenizerText
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()static TokenizeTextBuildercreate()booleaneof()End of tokens?static TokenizerfromString(java.lang.String string)longgetColumn()longgetLine()booleanhasNext()Is there another token?Tokennext()Move to next tokenTokenpeek()Peek next token : null for no token.
-
-
-
Method Detail
-
create
public static TokenizeTextBuilder create()
-
fromString
public static Tokenizer fromString(java.lang.String string)
-
hasNext
public final boolean hasNext()
Description copied from interface:TokenizerIs there another token?
-
eof
public final boolean eof()
Description copied from interface:TokenizerEnd of tokens?
-
peek
public final Token peek()
Description copied from interface:TokenizerPeek next token : null for no token.
-
close
public void close()
- Specified by:
closein interfaceorg.apache.jena.atlas.lib.Closeable
-
-