Uses of Interface
javax.json.JsonStructure
-
Packages that use JsonStructure Package Description javax.json Provides an object model API to process JSON.org.glassfish.json org.glassfish.json.jaxrs -
-
Uses of JsonStructure in javax.json
Subinterfaces of JsonStructure in javax.json Modifier and Type Interface Description interface
JsonArray
JsonArray
represents an immutable JSON array (an ordered sequence of zero or more values).interface
JsonObject
JsonObject
class represents an immutable JSON object value (an unordered collection of zero or more name/value pairs).Methods in javax.json that return JsonStructure Modifier and Type Method Description JsonStructure
JsonReader. read()
Returns a JSON array or object that is represented in the input source.Methods in javax.json with parameters of type JsonStructure Modifier and Type Method Description void
JsonWriter. write(JsonStructure value)
-
Uses of JsonStructure in org.glassfish.json
Classes in org.glassfish.json that implement JsonStructure Modifier and Type Class Description private static class
JsonArrayBuilderImpl.JsonArrayImpl
private static class
JsonObjectBuilderImpl.JsonObjectImpl
Methods in org.glassfish.json that return JsonStructure Modifier and Type Method Description JsonStructure
JsonReaderImpl. read()
Methods in org.glassfish.json with parameters of type JsonStructure Modifier and Type Method Description void
JsonWriterImpl. write(JsonStructure value)
-
Uses of JsonStructure in org.glassfish.json.jaxrs
Methods in org.glassfish.json.jaxrs that return JsonStructure Modifier and Type Method Description JsonStructure
JsonStructureBodyReader. readFrom(java.lang.Class<JsonStructure> jsonStructureClass, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> stringStringMultivaluedMap, java.io.InputStream inputStream)
Methods in org.glassfish.json.jaxrs with parameters of type JsonStructure Modifier and Type Method Description long
JsonStructureBodyWriter. getSize(JsonStructure jsonStructure, java.lang.Class<?> aClass, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType)
void
JsonStructureBodyWriter. writeTo(JsonStructure jsonStructure, java.lang.Class<?> aClass, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.Object> stringObjectMultivaluedMap, java.io.OutputStream outputStream)
Method parameters in org.glassfish.json.jaxrs with type arguments of type JsonStructure Modifier and Type Method Description JsonStructure
JsonStructureBodyReader. readFrom(java.lang.Class<JsonStructure> jsonStructureClass, java.lang.reflect.Type type, java.lang.annotation.Annotation[] annotations, javax.ws.rs.core.MediaType mediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> stringStringMultivaluedMap, java.io.InputStream inputStream)
-