Uses of Class
org.tomlj.TomlVersion
-
Packages that use TomlVersion Package Description org.tomlj A parser for Tom's Obvious, Minimal Language (TOML). -
-
Uses of TomlVersion in org.tomlj
Fields in org.tomlj declared as TomlVersion Modifier and Type Field Description (package private) TomlVersion
TomlVersion. canonical
private TomlVersion
ArrayVisitor. version
private TomlVersion
InlineTableVisitor. version
private TomlVersion
KeyVisitor. version
private TomlVersion
LineVisitor. version
private TomlVersion
MutableTomlTable. version
private TomlVersion
QuotedStringVisitor. version
private TomlVersion
ValueVisitor. version
Methods in org.tomlj that return TomlVersion Modifier and Type Method Description static TomlVersion
TomlVersion. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TomlVersion[]
TomlVersion. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.tomlj with parameters of type TomlVersion Modifier and Type Method Description (package private) boolean
TomlVersion. after(TomlVersion other)
(package private) static MutableTomlArray
MutableTomlArray. create(TomlVersion version)
(package private) static MutableTomlArray
MutableTomlArray. create(TomlVersion version, boolean tableArray)
(package private) static TomlParseResult
Parser. parse(org.antlr.v4.runtime.CharStream stream, TomlVersion version)
static TomlParseResult
Toml. parse(java.io.InputStream is, TomlVersion version)
Parse a TOML input stream.static TomlParseResult
Toml. parse(java.io.Reader reader, TomlVersion version)
Parse a TOML input stream.static TomlParseResult
Toml. parse(java.lang.String input, TomlVersion version)
Parse a TOML string.static TomlParseResult
Toml. parse(java.nio.channels.ReadableByteChannel channel, TomlVersion version)
Parse a TOML input stream.static TomlParseResult
Toml. parse(java.nio.file.Path file, TomlVersion version)
Parse a TOML file.Constructors in org.tomlj with parameters of type TomlVersion Constructor Description ArrayVisitor(TomlVersion version)
InlineTableVisitor(TomlVersion version, TomlPosition position)
KeyVisitor(TomlVersion version)
LineVisitor(TomlVersion version, ErrorReporter errorReporter)
MutableTomlTable(TomlVersion version)
MutableTomlTable(TomlVersion version, TomlPosition definedAt)
QuotedStringVisitor(TomlVersion version)
TomlVersion(@Nullable TomlVersion canonical)
ValueVisitor(TomlVersion version)
-