Class TokenizerJSON
- java.lang.Object
-
- org.apache.jena.atlas.json.io.parser.TokenizerJSON
-
-
Constructor Summary
Constructors Constructor Description TokenizerJSON(org.apache.jena.atlas.io.PeekReader reader)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleaneof()End of tokens?longgetColumn()longgetLine()booleanhasNext()Is there another token?Tokennext()Move to next tokenTokenpeek()Peek next token : null for no token.
-
-
-
Method Detail
-
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?
-
next
public final Token next()
Move to next token
-
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
-
-