Uses of Interface
javax.json.JsonObject
-
Packages that use JsonObject Package Description javax.json Provides an object model API to process JSON.javax.json.spi Service Provider Interface (SPI) to plug in implementations for JSON processing objects.javax.json.stream Provides a streaming API to parse and generate JSON.org.glassfish.json -
-
Uses of JsonObject in javax.json
Classes in javax.json that implement JsonObject Modifier and Type Class Description (package private) classEmptyObjectPrivate implementation of immutableJsonObject.Fields in javax.json declared as JsonObject Modifier and Type Field Description static JsonObjectJsonValue. EMPTY_JSON_OBJECTThe empty JSON object.Methods in javax.json that return JsonObject Modifier and Type Method Description default JsonObjectJsonValue. asJsonObject()Return the JsonValue as a JsonObjectJsonObjectJsonObjectBuilder. build()Returns the JSON object associated with this object builder.JsonObjectEmptyArray. getJsonObject(int index)JsonObjectEmptyObject. getJsonObject(java.lang.String name)JsonObjectJsonArray. getJsonObject(int index)Returns the object value at the specified position in this array.JsonObjectJsonObject. getJsonObject(java.lang.String name)Returns the object value to which the specified name is mapped.JsonObjectJsonReader. readObject()Returns a JSON object that is represented in the input source.Methods in javax.json with parameters of type JsonObject Modifier and Type Method Description static JsonObjectBuilderJson. createObjectBuilder(JsonObject object)Creates a JSON object builder, initialized with the specified object.default JsonObjectBuilderJsonBuilderFactory. createObjectBuilder(JsonObject object)Creates aJsonObjectBuilderinstance, initialized with an object.voidJsonWriter. writeObject(JsonObject object)Writes the specified JSONobjectto the output source. -
Uses of JsonObject in javax.json.spi
Methods in javax.json.spi with parameters of type JsonObject Modifier and Type Method Description JsonObjectBuilderJsonProvider. createObjectBuilder(JsonObject object)Creates a JSON object builder, initialized with the specified object. -
Uses of JsonObject in javax.json.stream
Methods in javax.json.stream that return JsonObject Modifier and Type Method Description default JsonObjectJsonParser. getObject()Returns aJsonObjectand advances the parser to the correspondingEND_OBJECT.Methods in javax.json.stream that return types with arguments of type JsonObject Modifier and Type Method Description static java.util.stream.Collector<JsonValue,java.util.Map<java.lang.String,JsonArrayBuilder>,JsonObject>JsonCollectors. groupingBy(java.util.function.Function<JsonValue,java.lang.String> classifier)Constructs ajava.util.stream.Collectorthat implements a "group by" operation on the inputJsonValueelements.static <T extends JsonArrayBuilder>
java.util.stream.Collector<JsonValue,java.util.Map<java.lang.String,T>,JsonObject>JsonCollectors. groupingBy(java.util.function.Function<JsonValue,java.lang.String> classifier, java.util.stream.Collector<JsonValue,T,JsonArray> downstream)Constructs ajava.util.stream.Collectorthat implements a "group by" operation on the inputJsonValueelements.static java.util.stream.Collector<java.util.Map.Entry<java.lang.String,JsonValue>,JsonObjectBuilder,JsonObject>JsonCollectors. toJsonObject()Constructs ajava.util.stream.Collectorthat accumulates the inputMap.Entry<String,JsonValue>elements into aJsonObject.static java.util.stream.Collector<JsonValue,JsonObjectBuilder,JsonObject>JsonCollectors. toJsonObject(java.util.function.Function<JsonValue,java.lang.String> keyMapper, java.util.function.Function<JsonValue,JsonValue> valueMapper)Constructs ajava.util.stream.Collectorthat accumulates the inputJsonValueelements into aJsonObject.Methods in javax.json.stream with parameters of type JsonObject Modifier and Type Method Description JsonParserJsonParserFactory. createParser(JsonObject obj)Creates a JSON parser from the specified JSON object. -
Uses of JsonObject in org.glassfish.json
Classes in org.glassfish.json that implement JsonObject Modifier and Type Class Description private static classJsonObjectBuilderImpl.JsonObjectImplFields in org.glassfish.json declared as JsonObject Modifier and Type Field Description private JsonObjectNodeReference.ObjectReference. objectMethods in org.glassfish.json that return JsonObject Modifier and Type Method Description JsonObjectNodeReference.ObjectReference. add(JsonValue value)JsonObjectJsonObjectBuilderImpl.JsonObjectImpl. asJsonObject()JsonObjectJsonObjectBuilderImpl. build()JsonObjectJsonArrayBuilderImpl.JsonArrayImpl. getJsonObject(int index)JsonObjectJsonObjectBuilderImpl.JsonObjectImpl. getJsonObject(java.lang.String name)JsonObjectJsonParserImpl. getObject()private JsonObjectJsonParserImpl. getObject(JsonObjectBuilder builder)JsonObjectJsonReaderImpl. readObject()JsonObjectNodeReference.ObjectReference. remove()JsonObjectNodeReference.ObjectReference. replace(JsonValue value)Methods in org.glassfish.json with parameters of type JsonObject Modifier and Type Method Description private JsonStructureJsonPatchImpl. apply(JsonStructure target, JsonObject operation)Applies a JSON Patch operation to the target.JsonObjectBuilderJsonBuilderFactoryImpl. createObjectBuilder(JsonObject object)JsonObjectBuilderJsonProviderImpl. createObjectBuilder(JsonObject object)JsonParserJsonParserFactoryImpl. createParser(JsonObject object)private voidJsonPatchImpl.DiffGenerator. diffObject(java.lang.String path, JsonObject source, JsonObject target)private JsonPointerJsonPatchImpl. getPointer(JsonObject operation, java.lang.String member)private JsonValueJsonPatchImpl. getValue(JsonObject operation)static NodeReferenceNodeReference. of(JsonObject object, java.lang.String name)Returns aNodeReferencefor a name/value pair in a JSON object.(package private) static java.lang.StringJsonMessages. POINTER_MAPPING_MISSING(JsonObject object, java.lang.String key)voidJsonWriterImpl. writeObject(JsonObject object)Constructors in org.glassfish.json with parameters of type JsonObject Constructor Description JsonObjectBuilderImpl(JsonObject object, BufferPool bufferPool)JsonStructureParser(JsonObject object)ObjectReference(JsonObject object, java.lang.String key)ObjectScope(JsonObject object)
-