Uses of Class
org.exoplatform.ws.frameworks.json.impl.JsonException
Packages that use JsonException
Package
Description
-
Uses of JsonException in org.exoplatform.ws.frameworks.json
Methods in org.exoplatform.ws.frameworks.json that throw JsonExceptionModifier and TypeMethodDescriptionvoidJsonWriter.close()Close output writer.JsonGenerator.createJsonObject(Object bean) Get HashMap representation for Java Bean object.voidJsonWriter.flush()Flush output writer.voidJsonParser.parse(InputStream in, JsonHandler handler) Parse given character stream and build object.voidJsonParser.parse(Reader reader, JsonHandler handler) Parse given character stream and build object.voidJsonWriter.writeEndArray()Write the end of JSON array ']'.voidJsonWriter.writeEndObject()Write the end of JSON object '}'.voidWrite the key.voidJsonWriter.writeNull()Write the null data to stream.voidJsonWriter.writeStartArray()Write the start of JSON array '['.voidJsonWriter.writeStartObject()Write the start of JSON object '{'.voidJsonWriter.writeString(String value) Write the String to stream.voidJsonWriter.writeValue(boolean value) Write the value of boolean type to stream.voidJsonWriter.writeValue(double value) Write the value of double type to stream.voidJsonWriter.writeValue(long value) Write the value of long type to stream. -
Uses of JsonException in org.exoplatform.ws.frameworks.json.impl
Methods in org.exoplatform.ws.frameworks.json.impl that throw JsonExceptionModifier and TypeMethodDescriptionvoidJsonWriterImpl.close()Close output writer.static ObjectObjectBuilder.createArray(Class<?> clazz, JsonValue jsonArray) Create array of Java Object from JSON source include multi-dimension array.static <T extends Collection<?>>
TObjectBuilder.createCollection(Class<T> collectionClass, Type genericType, JsonValue jsonArray) Create instance ofcollectionClassfrom JSON representation.JsonGeneratorImpl.createJsonArray(Object array) Create JSON array from specified object.JsonGeneratorImpl.createJsonArray(Collection<?> collection) Create JSON array from specified collection.JsonGeneratorImpl.createJsonObject(Object object) Create JSON object from specified object.JsonGeneratorImpl.createJsonObjectFromMap(Map<String, ?> map) Create JSON object from specified map.JsonGeneratorImpl.createJsonObjectFromString(String s) Create JSON object from specified string imply it is JSON object in String format.ObjectBuilder.createObject(Class<T> mapClass, Type genericType, JsonValue jsonObject) Create instance ofmapClassfrom JSON representation.static <T> TObjectBuilder.createObject(Class<T> clazz, JsonValue jsonValue) Create Java Bean from Json Source.voidJsonWriterImpl.flush()Flush output writer.voidJsonParserImpl.parse(InputStream sream, JsonHandler eventHandler) Parse given character stream and build object.voidJsonParserImpl.parse(Reader reader, JsonHandler eventHandler) Parse given character stream and build object.voidJsonWriterImpl.writeEndArray()Write the end of JSON array ']'.voidJsonWriterImpl.writeEndObject()Write the end of JSON object '}'.voidWrite the key.voidJsonWriterImpl.writeNull()Write the null data to stream.voidJsonWriterImpl.writeStartArray()Write the start of JSON array '['.voidJsonWriterImpl.writeStartObject()Write the start of JSON object '{'.voidJsonWriterImpl.writeString(String value) Write the String to stream.voidJsonWriterImpl.writeValue(boolean value) Write the value of boolean type to stream.voidJsonWriterImpl.writeValue(double value) Write the value of double type to stream.voidJsonWriterImpl.writeValue(long value) Write the value of long type to stream. -
Uses of JsonException in org.exoplatform.ws.frameworks.json.value
Methods in org.exoplatform.ws.frameworks.json.value that throw JsonExceptionModifier and TypeMethodDescriptionabstract voidJsonValue.writeTo(JsonWriter writer) Write value in given writer. -
Uses of JsonException in org.exoplatform.ws.frameworks.json.value.impl
Methods in org.exoplatform.ws.frameworks.json.value.impl that throw JsonExceptionModifier and TypeMethodDescriptionvoidArrayValue.writeTo(JsonWriter writer) Write value in given writer.voidBooleanValue.writeTo(JsonWriter writer) Write value in given writer.voidDoubleValue.writeTo(JsonWriter writer) Write value in given writer.voidLongValue.writeTo(JsonWriter writer) Write value in given writer.voidNullValue.writeTo(JsonWriter writer) Write value in given writer.abstract voidNumericValue.writeTo(JsonWriter writer) Write value in given writer.voidObjectValue.writeTo(JsonWriter writer) Write value in given writer.voidStringValue.writeTo(JsonWriter writer) Write value in given writer.