Uses of Class
io.github.jopenlibs.vault.json.JsonValue
Packages that use JsonValue
Package
Description
Intended for internal use by other classes within the Vault driver library.
-
Uses of JsonValue in io.github.jopenlibs.vault.json
Subclasses of JsonValue in io.github.jopenlibs.vault.jsonModifier and TypeClassDescriptionclassRepresents a JSON array, an ordered collection of JSON values.classRepresents a JSON object, a set of name/value pairs, where the names are strings and the values are JSON values.Fields in io.github.jopenlibs.vault.json declared as JsonValueModifier and TypeFieldDescriptionstatic final JsonValueJson.FALSERepresents the JSON literalfalse.static final JsonValueJson.NULLRepresents the JSON literalnull.static final JsonValueJson.TRUERepresents the JSON literaltrue.Methods in io.github.jopenlibs.vault.json that return JsonValueModifier and TypeMethodDescriptionstatic JsonValueJson.array()Creates a new empty JsonArray.JsonArray.get(int index) Returns the value of the element at the specified position in this array.Returns the value of the member with the specified name in this object.JsonObject.Member.getValue()Returns the value of this member.static JsonValueReads the entire input stream from the given reader and parses it as JSON.static JsonValueParses the given input string as JSON.static JsonValueJson.value(boolean value) Returns a JsonValue instance that represents the givenbooleanvalue.static JsonValueJson.value(double value) Returns a JsonValue instance that represents the givendoublevalue.static JsonValueJson.value(float value) Returns a JsonValue instance that represents the givenfloatvalue.static JsonValueJson.value(int value) Returns a JsonValue instance that represents the givenintvalue.static JsonValueJson.value(int[] value) Returns a JsonValue instance that represents the givenint[]value.static JsonValueJson.value(long value) Returns a JsonValue instance that represents the givenlongvalue.static JsonValueReturns a JsonValue instance that represents the given string.Methods in io.github.jopenlibs.vault.json that return types with arguments of type JsonValueModifier and TypeMethodDescriptionJsonArray.iterator()Returns an iterator over the values of this array in document order.JsonArray.values()Returns a list of the values in this array in document order.Methods in io.github.jopenlibs.vault.json with parameters of type JsonValueModifier and TypeMethodDescriptionAppends the specified JSON value to the end of this array.Appends a new member to the end of this object, with the specified name and the specified JSON value.Replaces the element at the specified position in this array with the specified JSON value.Sets the value of the member with the specified name to the specified JSON value.