Uses of Interface
javax.json.JsonValue
Packages that use JsonValue
Package
Description
Provides an object model API to process JSON.
Provides a streaming API to parse and generate
JSON.
-
Uses of JsonValue in javax.json
Subinterfaces of JsonValue in javax.jsonModifier and TypeInterfaceDescriptioninterface
JsonArray
represents an immutable JSON array (an ordered sequence of zero or more values).interface
An immutable JSON number value.interface
JsonObject
class represents an immutable JSON object value (an unordered collection of zero or more name/value pairs).interface
An immutable JSON string value.interface
Fields in javax.json declared as JsonValueModifier and TypeFieldDescriptionstatic final JsonValue
JsonValue.FALSE
JSON false valuestatic final JsonValue
JsonValue.NULL
JSON null value.static final JsonValue
JsonValue.TRUE
JSON true value.Methods in javax.json with type parameters of type JsonValueModifier and TypeMethodDescriptionJsonArray.getValuesAs
(Class<T> clazz) Returns a list a view of the specified type for the array.Methods in javax.json with parameters of type JsonValueModifier and TypeMethodDescriptionAdds a value to the array.Adds a name/JsonValue
pair to the JSON object associated with this object builder. -
Uses of JsonValue in javax.json.stream
Methods in javax.json.stream with parameters of type JsonValueModifier and TypeMethodDescriptionWrites a JSON name/value pair in the current object context.Writes the specified value as a JSON value within the current array context. -
Uses of JsonValue in org.glassfish.json
Classes in org.glassfish.json that implement JsonValueModifier and TypeClassDescriptionprivate static final class
(package private) class
JsonNumber impl.private static final class
private static final class
private static final class
private static final class
(package private) final class
JsonString implFields in org.glassfish.json declared as JsonValueModifier and TypeFieldDescriptionprivate JsonValue
JsonStructureParser.ArrayScope.value
private JsonValue
JsonStructureParser.ObjectScope.value
Fields in org.glassfish.json with type parameters of type JsonValueModifier and TypeFieldDescriptionJsonStructureParser.ArrayScope.it
JsonStructureParser.ObjectScope.it
JsonArrayBuilderImpl.JsonArrayImpl.valueList
JsonArrayBuilderImpl.valueList
JsonObjectBuilderImpl.JsonObjectImpl.valueMap
JsonObjectBuilderImpl.valueMap
Methods in org.glassfish.json with type parameters of type JsonValueMethods in org.glassfish.json that return JsonValueModifier and TypeMethodDescriptionJsonArrayBuilderImpl.JsonArrayImpl.get
(int index) (package private) JsonValue
JsonStructureParser.ArrayScope.getJsonValue()
(package private) JsonValue
JsonStructureParser.ObjectScope.getJsonValue()
(package private) abstract JsonValue
JsonStructureParser.Scope.getJsonValue()
JsonStructureParser.ArrayScope.next()
Methods in org.glassfish.json that return types with arguments of type JsonValueModifier and TypeMethodDescriptionJsonObjectBuilderImpl.JsonObjectImpl.entrySet()
JsonStructureParser.ObjectScope.next()
Methods in org.glassfish.json with parameters of type JsonValueModifier and TypeMethodDescriptionprivate void
JsonArrayBuilderImpl.addValueList
(JsonValue value) (package private) static JsonStructureParser.Scope
JsonStructureParser.Scope.createScope
(JsonValue value) private static JsonParser.Event
private void
JsonObjectBuilderImpl.putValueMap
(String name, JsonValue value) Constructor parameters in org.glassfish.json with type arguments of type JsonValueModifierConstructorDescription(package private)
JsonArrayImpl
(List<JsonValue> valueList, BufferPool bufferPool) (package private)
JsonObjectImpl
(Map<String, JsonValue> valueMap, BufferPool bufferPool)