Uses of Class
com.sdicons.json.model.JSONObject

Packages that use JSONObject
com.sdicons.json.parser.impl   
com.sdicons.json.serializer.helper   
com.sdicons.json.serializer.helper.impl   
com.sdicons.json.serializer.marshall   
com.sdicons.json.validator   
com.sdicons.json.validator.impl   
com.sdicons.json.validator.impl.predicates   
 

Uses of JSONObject in com.sdicons.json.parser.impl
 

Methods in com.sdicons.json.parser.impl that return JSONObject
 JSONObject JSONParserAntlr.object(String aStreamName)
           
 

Uses of JSONObject in com.sdicons.json.serializer.helper
 

Methods in com.sdicons.json.serializer.helper with parameters of type JSONObject
 Object MarshallHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
          Convert JSON representation into an instance of a class.
 void MarshallHelper.renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
          Convert an element to JSON.
 

Uses of JSONObject in com.sdicons.json.serializer.helper.impl
 

Methods in com.sdicons.json.serializer.helper.impl with parameters of type JSONObject
 Object CollectionHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object FloatHelper.parseValue(JSONObject aObjectValue, JSONMarshall aMarshall, HashMap aPool)
           
 Object ObjectHelperDirect.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object FontHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object BigDecimalHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object IntegerHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object BooleanHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object StringHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object DoubleHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object ArrayHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object CharacterHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object ShortHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object ColorHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object ObjectHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object DateHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object ByteHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object MapHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object EnumHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object LongHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 Object BigIntegerHelper.parseValue(JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 void CollectionHelper.renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 void ObjectHelperDirect.renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 void FontHelper.renderValue(Object aObj, JSONObject aParent, JSONMarshall aMarshall, HashMap aPool)
           
 void ArrayHelper.renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 void ColorHelper.renderValue(Object aObj, JSONObject aParent, JSONMarshall aMarshall, HashMap aPool)
           
 void ObjectHelper.renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 void DateHelper.renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 void MapHelper.renderValue(Object aObj, JSONObject aObjectElement, JSONMarshall aMarshall, HashMap aPool)
           
 void AbstractHelper.renderValue(Object aObj, JSONObject aParent, JSONMarshall aMarshall, HashMap aPool)
           
 

Uses of JSONObject in com.sdicons.json.serializer.marshall
 

Methods in com.sdicons.json.serializer.marshall that return JSONObject
 JSONObject Marshall.marshall(boolean aValue)
          Convert a boolean primitive to JSON.
 JSONObject JSONMarshall.marshall(boolean aValue)
           
 JSONObject Marshall.marshall(byte aValue)
          Convert a byte primitive to JSON.
 JSONObject JSONMarshall.marshall(byte aValue)
           
 JSONObject Marshall.marshall(char aValue)
          Convert a char primitive to JSON.
 JSONObject JSONMarshall.marshall(char aValue)
           
 JSONObject Marshall.marshall(double aValue)
          Convert a double primitive to JSON.
 JSONObject JSONMarshall.marshall(double aValue)
           
 JSONObject Marshall.marshall(float aValue)
          Convert a float primitive to JSON.
 JSONObject JSONMarshall.marshall(float aValue)
           
 JSONObject Marshall.marshall(int aValue)
          Convert an int primitive to JSON.
 JSONObject JSONMarshall.marshall(int aValue)
           
 JSONObject Marshall.marshall(long aValue)
          Convert a long primitive to JSON.
 JSONObject JSONMarshall.marshall(long aValue)
           
 JSONObject Marshall.marshall(Object aObj)
          Convert a Java object to JSON.
 JSONObject JSONMarshall.marshall(Object aObj)
           
 JSONObject Marshall.marshall(short aValue)
          Convert a short primitive to JSON.
 JSONObject JSONMarshall.marshall(short aValue)
           
 JSONObject JSONMarshall.marshallImpl(Object aObj, HashMap aPool)
           
 

Methods in com.sdicons.json.serializer.marshall with parameters of type JSONObject
static void JSONMarshall.requireStringAttribute(JSONObject aElement, String anAttribute)
           
 MarshallValue Marshall.unmarshall(JSONObject aElement)
          Convert a JSON representation to the Java primitive or reference.
 MarshallValue JSONMarshall.unmarshall(JSONObject aElement)
           
 Object JSONMarshall.unmarshallImpl(JSONObject aElement, HashMap aObjectPool)
           
 

Uses of JSONObject in com.sdicons.json.validator
 

Constructors in com.sdicons.json.validator with parameters of type JSONObject
JSONValidator(JSONObject aValidation)
          Construct the validator based on the JSON description.
 

Uses of JSONObject in com.sdicons.json.validator.impl
 

Methods in com.sdicons.json.validator.impl with parameters of type JSONObject
static void ValidatorUtil.requiresAttribute(JSONObject aTarget, String aAttrib, Class aValueType)
           
 

Uses of JSONObject in com.sdicons.json.validator.impl.predicates
 

Methods in com.sdicons.json.validator.impl.predicates that return JSONObject
 JSONObject Predicate.getRule()
           
 

Constructors in com.sdicons.json.validator.impl.predicates with parameters of type JSONObject
And(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
Array(String aName, JSONObject aRule)
           
Bool(String aName, JSONObject aRule)
           
Complex(String aName, JSONObject aRule)
           
Content(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
CustomPredicate(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
CustomValidator(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
Decimal(String aName, JSONObject aRule)
           
Enumeration(String aName, JSONObject aRule)
           
False(String aName, JSONObject aRule)
           
Int(String aName, JSONObject aRule)
           
Length(String aName, JSONObject aRule)
           
Let(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
Not(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
Nr(String aName, JSONObject aRule)
           
Null(String aName, JSONObject aRule)
           
Object(String aName, JSONObject aRule)
           
Or(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
Predicate(String aName, JSONObject aRule)
           
Properties(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
Range(String aName, JSONObject aRule)
           
Ref(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
Regexp(String aName, JSONObject aRule)
           
Simple(String aName, JSONObject aRule)
           
Str(String aName, JSONObject aRule)
           
Switch(String aName, JSONObject aRule, HashMap<String,Validator> aRuleset)
           
True(String aName, JSONObject aRule)
           
 



Copyright © 2011. All Rights Reserved.