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 void
close()
static TokenizeTextBuilder
create()
boolean
eof()
End of tokens?static Tokenizer
fromString(java.lang.String string)
long
getColumn()
long
getLine()
boolean
hasNext()
Is there another token?Token
next()
Move to next tokenToken
peek()
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:Tokenizer
Is there another token?
-
eof
public final boolean eof()
Description copied from interface:Tokenizer
End of tokens?
-
peek
public final Token peek()
Description copied from interface:Tokenizer
Peek next token : null for no token.
-
close
public void close()
- Specified by:
close
in interfaceorg.apache.jena.atlas.lib.Closeable
-
-