Uses of Class
com.fasterxml.jackson.dataformat.toml.TomlToken
-
Packages that use TomlToken Package Description com.fasterxml.jackson.dataformat.toml -
-
Uses of TomlToken in com.fasterxml.jackson.dataformat.toml
Fields in com.fasterxml.jackson.dataformat.toml declared as TomlToken Modifier and Type Field Description private TomlToken
Parser. next
Methods in com.fasterxml.jackson.dataformat.toml that return TomlToken Modifier and Type Method Description private TomlToken
Parser. peek()
private TomlToken
Parser. poll(int nextState)
Note: Polling also lexes the next token, so methods likeLexer.yytext()
will not work afterwardsstatic TomlToken
TomlToken. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TomlToken[]
TomlToken. values()
Returns an array containing the constants of this enum type, in the order they are declared.TomlToken
Lexer. yylex()
Resumes scanning until the next regular expression is matched, the end of input is encountered or an I/O-Error occurs.Methods in com.fasterxml.jackson.dataformat.toml with parameters of type TomlToken Modifier and Type Method Description private void
Parser. pollExpected(TomlToken expected, int nextState)
(package private) TomlStreamReadException
TomlStreamReadException.ErrorContext.ErrorBuilder. unexpectedToken(TomlToken actual, java.lang.String expected)
-