Uses of Enum Class
org.tomlj.JsonOptions
Packages that use JsonOptions
-
Uses of JsonOptions in org.tomlj
Methods in org.tomlj that return JsonOptionsModifier and TypeMethodDescriptionstatic JsonOptionsReturns the enum constant of this class with the specified name.static JsonOptions[]JsonOptions.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.tomlj with parameters of type JsonOptionsModifier and TypeMethodDescriptiondefault voidTomlArray.toJson(Appendable appendable, JsonOptions... options) Append a JSON representation of this array to the appendable output.default StringTomlArray.toJson(JsonOptions... options) Return a representation of this array using JSON.default voidTomlTable.toJson(Appendable appendable, JsonOptions... options) Append a JSON representation of this table to the appendable output.default StringTomlTable.toJson(JsonOptions... options) Return a representation of this table using JSON.Method parameters in org.tomlj with type arguments of type JsonOptionsModifier and TypeMethodDescriptiondefault voidTomlArray.toJson(Appendable appendable, EnumSet<JsonOptions> options) Append a JSON representation of this array to the appendable output.default StringTomlArray.toJson(EnumSet<JsonOptions> options) Return a representation of this array using JSON.default voidTomlTable.toJson(Appendable appendable, EnumSet<JsonOptions> options) Append a JSON representation of this table to the appendable output.default StringTomlTable.toJson(EnumSet<JsonOptions> options) Return a representation of this table using JSON.