Uses of Class
com.sdicons.json.serializer.marshall.MarshallException
-
Packages that use MarshallException Package Description com.sdicons.json.serializer.helper com.sdicons.json.serializer.helper.impl com.sdicons.json.serializer.marshall -
-
Uses of MarshallException in com.sdicons.json.serializer.helper
Methods in com.sdicons.json.serializer.helper that throw MarshallException Modifier and Type Method Description java.lang.Object
MarshallHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
Convert JSON representation into an instance of a class.void
MarshallHelper. renderValue(java.lang.Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
Convert an element to JSON. -
Uses of MarshallException in com.sdicons.json.serializer.helper.impl
Methods in com.sdicons.json.serializer.helper.impl that throw MarshallException Modifier and Type Method Description protected ObjectHelperDirect.AnnotatedMethods
ObjectHelperDirect. getAnnotatedMethods(java.lang.Class aClass)
java.lang.Object
ArrayHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
BigDecimalHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
BigIntegerHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
BooleanHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
ByteHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
CharacterHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
CollectionHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
ColorHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
DateHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
DoubleHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
EnumHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
FloatHelper. parseValue(JSONObject aObjectValue, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
FontHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
IntegerHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
LongHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
MapHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
ObjectHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
ObjectHelperDirect. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
ShortHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
java.lang.Object
StringHelper. parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
void
AbstractHelper. renderValue(java.lang.Object aObj, JSONObject aParent, JSONMarshall aMarshall, java.util.HashMap aPool)
void
ArrayHelper. renderValue(java.lang.Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
void
CollectionHelper. renderValue(java.lang.Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
void
ColorHelper. renderValue(java.lang.Object aObj, JSONObject aParent, JSONMarshall aMarshall, java.util.HashMap aPool)
void
DateHelper. renderValue(java.lang.Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
void
FontHelper. renderValue(java.lang.Object aObj, JSONObject aParent, JSONMarshall aMarshall, java.util.HashMap aPool)
void
MapHelper. renderValue(java.lang.Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
void
ObjectHelper. renderValue(java.lang.Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
void
ObjectHelperDirect. renderValue(java.lang.Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, java.util.HashMap aPool)
-
Uses of MarshallException in com.sdicons.json.serializer.marshall
Methods in com.sdicons.json.serializer.marshall that throw MarshallException Modifier and Type Method Description boolean
MarshallValue. getBoolean()
Get the primitive boolean value.boolean
MarshallValueImpl. getBoolean()
byte
MarshallValue. getByte()
Get the primitive byte value.byte
MarshallValueImpl. getByte()
char
MarshallValue. getChar()
Get the primitive char value.char
MarshallValueImpl. getChar()
double
MarshallValue. getDouble()
Get the primitive double value.double
MarshallValueImpl. getDouble()
float
MarshallValue. getFloat()
Get the primitive float value.float
MarshallValueImpl. getFloat()
int
MarshallValue. getInt()
Get the primitive int value.int
MarshallValueImpl. getInt()
long
MarshallValue. getLong()
Get the primitive long value.long
MarshallValueImpl. getLong()
java.lang.Object
MarshallValue. getReference()
Get the reference to a Java object.java.lang.Object
MarshallValueImpl. getReference()
short
MarshallValue. getShort()
Get the primitive short value.short
MarshallValueImpl. getShort()
JSONObject
JSONMarshall. marshall(java.lang.Object aObj)
JSONObject
Marshall. marshall(java.lang.Object aObj)
Convert a Java object to JSON.JSONObject
JSONMarshall. marshallImpl(java.lang.Object aObj, java.util.HashMap aPool)
private JSONObject
JSONMarshall. marshallImplArray(java.lang.Object aObj, java.util.HashMap aPool)
private JSONObject
JSONMarshall. marshallImplObject(java.lang.Object aObj, java.lang.String aObjId, java.lang.Class aObjClass, java.lang.String aObjClassName, java.util.HashMap aPool)
static void
JSONMarshall. requireStringAttribute(JSONObject aElement, java.lang.String anAttribute)
MarshallValue
JSONMarshall. unmarshall(JSONObject aElement)
MarshallValue
Marshall. unmarshall(JSONObject aElement)
Convert a JSON representation to the Java primitive or reference.java.lang.Object
JSONMarshall. unmarshallImpl(JSONObject aElement, java.util.HashMap aObjectPool)
private java.lang.Object
JSONMarshall. unmarshallImplPrimitive(JSONObject aElement)
-