Uses of Class
org.tomlj.JsonOptions
-
Packages that use JsonOptions Package Description org.tomlj A parser for Tom's Obvious, Minimal Language (TOML). -
-
Uses of JsonOptions in org.tomlj
Methods in org.tomlj that return JsonOptions Modifier and Type Method Description static JsonOptions
JsonOptions. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JsonOptions[]
JsonOptions. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.tomlj that return types with arguments of type JsonOptions Modifier and Type Method Description (package private) static java.util.EnumSet<JsonOptions>
JsonOptions. setFrom(JsonOptions[] options)
Methods in org.tomlj with parameters of type JsonOptions Modifier and Type Method Description (package private) static java.util.EnumSet<JsonOptions>
JsonOptions. setFrom(JsonOptions[] options)
default void
TomlArray. toJson(java.lang.Appendable appendable, JsonOptions... options)
Append a JSON representation of this array to the appendable output.default java.lang.String
TomlArray. toJson(JsonOptions... options)
Return a representation of this array using JSON.default void
TomlTable. toJson(java.lang.Appendable appendable, JsonOptions... options)
Append a JSON representation of this table to the appendable output.default java.lang.String
TomlTable. toJson(JsonOptions... options)
Return a representation of this table using JSON.Method parameters in org.tomlj with type arguments of type JsonOptions Modifier and Type Method Description private static void
JsonSerializer. appendTomlValue(java.lang.Object value, java.lang.Appendable appendable, java.util.Set<JsonOptions> options, int indent)
private static void
JsonSerializer. appendTomlValueLiteral(TomlType tomlType, java.lang.Object value, java.lang.Appendable appendable, java.util.Set<JsonOptions> options)
(package private) static void
JsonSerializer. toJson(TomlArray array, java.lang.Appendable appendable, java.util.Set<JsonOptions> options)
private static void
JsonSerializer. toJson(TomlArray array, java.lang.Appendable appendable, java.util.Set<JsonOptions> options, int indent)
(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)
default void
TomlArray. toJson(java.lang.Appendable appendable, java.util.EnumSet<JsonOptions> options)
Append a JSON representation of this array to the appendable output.default java.lang.String
TomlArray. toJson(java.util.EnumSet<JsonOptions> options)
Return a representation of this array using JSON.default void
TomlTable. toJson(java.lang.Appendable appendable, java.util.EnumSet<JsonOptions> options)
Append a JSON representation of this table to the appendable output.default java.lang.String
TomlTable. toJson(java.util.EnumSet<JsonOptions> options)
Return a representation of this table using JSON.
-