Uses of Interface
org.tomlj.TomlTable
-
Packages that use TomlTable Package Description org.tomlj A parser for Tom's Obvious, Minimal Language (TOML). -
-
Uses of TomlTable in org.tomlj
Subinterfaces of TomlTable in org.tomlj Modifier and Type Interface Description interface
TomlParseResult
The result from parsing a TOML document.Classes in org.tomlj that implement TomlTable Modifier and Type Class Description (package private) class
EmptyTomlTable
(package private) class
MutableTomlTable
Fields in org.tomlj declared as TomlTable Modifier and Type Field Description (package private) static TomlTable
EmptyTomlTable. EMPTY_TABLE
Methods in org.tomlj that return TomlTable Modifier and Type Method Description default TomlTable
TomlArray. getTable(int index)
Get a table at a specified index.default @Nullable TomlTable
TomlTable. getTable(java.lang.String dottedKey)
Get a table from the TOML document.default @Nullable TomlTable
TomlTable. getTable(java.util.List<java.lang.String> path)
Get a table from the TOML document.default TomlTable
TomlTable. getTableOrEmpty(java.lang.String dottedKey)
Get a table from the TOML document.default TomlTable
TomlTable. getTableOrEmpty(java.util.List<java.lang.String> path)
Get a table from the TOML document.Methods in org.tomlj with parameters of type TomlTable Modifier and Type Method Description static boolean
Toml. equals(TomlTable table1, TomlTable table2)
Performs a deep comparison between two tables to determine if they are equivalent.(package private) static void
JsonSerializer. toJson(TomlTable table, java.lang.Appendable appendable, java.util.Set<JsonOptions> options)
private static void
JsonSerializer. toJson(TomlTable table, java.lang.Appendable appendable, java.util.Set<JsonOptions> options, int indent)
(package private) static void
TomlSerializer. toToml(TomlTable table, java.lang.Appendable appendable)
private static void
TomlSerializer. toToml(TomlTable table, java.lang.Appendable appendable, int indent, java.lang.String path)
-