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 interfaceTomlParseResultThe result from parsing a TOML document.Classes in org.tomlj that implement TomlTable Modifier and Type Class Description (package private) classEmptyTomlTable(package private) classMutableTomlTableFields in org.tomlj declared as TomlTable Modifier and Type Field Description (package private) static TomlTableEmptyTomlTable. EMPTY_TABLEMethods in org.tomlj that return TomlTable Modifier and Type Method Description default TomlTableTomlArray. getTable(int index)Get a table at a specified index.default @Nullable TomlTableTomlTable. getTable(java.lang.String dottedKey)Get a table from the TOML document.default @Nullable TomlTableTomlTable. getTable(java.util.List<java.lang.String> path)Get a table from the TOML document.default TomlTableTomlTable. getTableOrEmpty(java.lang.String dottedKey)Get a table from the TOML document.default TomlTableTomlTable. 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 booleanToml. equals(TomlTable table1, TomlTable table2)Performs a deep comparison between two tables to determine if they are equivalent.(package private) static voidJsonSerializer. toJson(TomlTable table, java.lang.Appendable appendable, java.util.Set<JsonOptions> options)private static voidJsonSerializer. toJson(TomlTable table, java.lang.Appendable appendable, java.util.Set<JsonOptions> options, int indent)(package private) static voidTomlSerializer. toToml(TomlTable table, java.lang.Appendable appendable)private static voidTomlSerializer. toToml(TomlTable table, java.lang.Appendable appendable, int indent, java.lang.String path)
-