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) TomlVersionTomlVersion. canonicalprivate TomlVersionArrayVisitor. versionprivate TomlVersionInlineTableVisitor. versionprivate TomlVersionKeyVisitor. versionprivate TomlVersionLineVisitor. versionprivate TomlVersionMutableTomlTable. versionprivate TomlVersionQuotedStringVisitor. versionprivate TomlVersionValueVisitor. versionMethods in org.tomlj that return TomlVersion Modifier and Type Method Description static TomlVersionTomlVersion. 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) booleanTomlVersion. after(TomlVersion other)(package private) static MutableTomlArrayMutableTomlArray. create(TomlVersion version)(package private) static MutableTomlArrayMutableTomlArray. create(TomlVersion version, boolean tableArray)(package private) static TomlParseResultParser. parse(org.antlr.v4.runtime.CharStream stream, TomlVersion version)static TomlParseResultToml. parse(java.io.InputStream is, TomlVersion version)Parse a TOML input stream.static TomlParseResultToml. parse(java.io.Reader reader, TomlVersion version)Parse a TOML input stream.static TomlParseResultToml. parse(java.lang.String input, TomlVersion version)Parse a TOML string.static TomlParseResultToml. parse(java.nio.channels.ReadableByteChannel channel, TomlVersion version)Parse a TOML input stream.static TomlParseResultToml. 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)
-