Uses of Class
com.sdicons.json.model.JSONValue
-
-
Uses of JSONValue in com.sdicons.json.mapper
Methods in com.sdicons.json.mapper that return JSONValue Modifier and Type Method Description static JSONValueJSONMapper. toJSON(java.lang.Object aPojo)Map a POJO to the JSON representation.Methods in com.sdicons.json.mapper with parameters of type JSONValue Modifier and Type Method Description static java.lang.ObjectJSONMapper. toJava(JSONValue aValue)Map a JSON representation to a Java object.static java.lang.ObjectJSONMapper. toJava(JSONValue aValue, java.lang.Class aPojoClass)Map a JSON representation to a Java object.static java.lang.ObjectJSONMapper. toJava(JSONValue aValue, java.lang.reflect.ParameterizedType aGenericType)Map a JSON representation to a Java object. -
Uses of JSONValue in com.sdicons.json.mapper.helper
Methods in com.sdicons.json.mapper.helper that return JSONValue Modifier and Type Method Description JSONValueComplexMapperHelper. toJSON(java.lang.Object aPojo)JSONValueSimpleMapperHelper. toJSON(java.lang.Object aPojo)Methods in com.sdicons.json.mapper.helper with parameters of type JSONValue Modifier and Type Method Description java.lang.ObjectComplexMapperHelper. toJava(JSONValue aValue, java.lang.Class aRequestedClass, java.lang.reflect.Type[] aTypes)java.lang.ObjectSimpleMapperHelper. toJava(JSONValue aValue, java.lang.Class aRequestedClass) -
Uses of JSONValue in com.sdicons.json.mapper.helper.impl
Methods in com.sdicons.json.mapper.helper.impl that return JSONValue Modifier and Type Method Description JSONValueAbstractMapper. toJSON(java.lang.Object aPojo)JSONValueArrayMapper. toJSON(java.lang.Object aObj)JSONValueBigDecimalMapper. toJSON(java.lang.Object aPojo)JSONValueBigIntegerMapper. toJSON(java.lang.Object aPojo)JSONValueBooleanMapper. toJSON(java.lang.Object aPojo)JSONValueByteMapper. toJSON(java.lang.Object aPojo)JSONValueCollectionMapper. toJSON(java.lang.Object aPojo)JSONValueDateMapper. toJSON(java.lang.Object aPojo)JSONValueDoubleMapper. toJSON(java.lang.Object aPojo)JSONValueFloatMapper. toJSON(java.lang.Object aPojo)JSONValueIntegerMapper. toJSON(java.lang.Object aPojo)JSONValueLongMapper. toJSON(java.lang.Object aPojo)JSONValueMapMapper. toJSON(java.lang.Object aPojo)JSONValueObjectMapper. toJSON(java.lang.Object aPojo)JSONValueObjectMapperDirect. toJSON(java.lang.Object aPojo)JSONValueShortMapper. toJSON(java.lang.Object aPojo)Methods in com.sdicons.json.mapper.helper.impl with parameters of type JSONValue Modifier and Type Method Description java.lang.ObjectArrayMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectBigDecimalMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectBigIntegerMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectBooleanMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectByteMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectCharacterMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectCollectionMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectCollectionMapper. toJava(JSONValue aValue, java.lang.Class aRawClass, java.lang.reflect.Type[] aTypes)java.lang.ObjectDateMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectDoubleMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectEnumMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectFloatMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectIntegerMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectLongMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectMapMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectMapMapper. toJava(JSONValue aValue, java.lang.Class aRawClass, java.lang.reflect.Type[] aTypes)java.lang.ObjectObjectMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectObjectMapperDirect. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectShortMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass)java.lang.ObjectStringMapper. toJava(JSONValue aValue, java.lang.Class aRequestedClass) -
Uses of JSONValue in com.sdicons.json.model
Subclasses of JSONValue in com.sdicons.json.model Modifier and Type Class Description classJSONArrayRepresents a JSON array (list), an ordered list of values ...classJSONBooleanRepresents a JSON boolean value.classJSONComplexSuperclass of JSON complex types, namelyJSONArrayandJSONObject.classJSONDecimalRepresents a JSON float.classJSONIntegerRepresents a JSON int.classJSONNullRepresents a JSON null value.classJSONNumberThe parent class of numerical types, beingJSONIntegerandJSONDecimal.classJSONObjectRepresentation of a JSON object, a collection (unordered) of name/value pairs.classJSONSimpleclassJSONStringRepresents a JSON delimited string.Fields in com.sdicons.json.model with type parameters of type JSONValue Modifier and Type Field Description private java.util.List<JSONValue>JSONArray. arrayprivate java.util.HashMap<java.lang.String,JSONValue>JSONObject. mapMethods in com.sdicons.json.model that return JSONValue Modifier and Type Method Description static JSONValueJSONValue. decorate(java.lang.Object anObject)This method is the reverse of a strip, it converts a construction of Java objects to a JSON decorated composition.JSONValueJSONArray. get(int i)Utility method, get an element at a specific position in the list.JSONValueJSONObject. get(java.lang.String aKey)Utility method, get the element with specified name without having to retreive the map first using getValue().Methods in com.sdicons.json.model that return types with arguments of type JSONValue Modifier and Type Method Description java.util.List<JSONValue>JSONArray. getValue()java.util.HashMap<java.lang.String,JSONValue>JSONObject. getValue() -
Uses of JSONValue in com.sdicons.json.parser
Methods in com.sdicons.json.parser that return JSONValue Modifier and Type Method Description JSONValueJSONParser. nextValue()Read the next JSON structure from the stream and convert it into a Java model. -
Uses of JSONValue in com.sdicons.json.parser.impl
Methods in com.sdicons.json.parser.impl that return JSONValue Modifier and Type Method Description JSONValueJSONParserAntlr. atomic(java.lang.String aStreamName)JSONValueJSONParserAntlr. value(java.lang.String aStreamName) -
Uses of JSONValue in com.sdicons.json.validator
Fields in com.sdicons.json.validator declared as JSONValue Modifier and Type Field Description private JSONValueValidationException. culpritMethods in com.sdicons.json.validator that return JSONValue Modifier and Type Method Description JSONValueValidationException. getCulprit()Methods in com.sdicons.json.validator with parameters of type JSONValue Modifier and Type Method Description voidJSONValidator. validate(JSONValue aValue)Validate a JSON value according to the rules described in the validator rules.voidValidator. validate(JSONValue aValue)Validate a JSONValue.Constructors in com.sdicons.json.validator with parameters of type JSONValue Constructor Description ValidationException(JSONValue aCulprit, java.lang.String aRule)ValidationException(java.lang.String aComments, JSONValue aCulprit, java.lang.String aRule) -
Uses of JSONValue in com.sdicons.json.validator.impl
Methods in com.sdicons.json.validator.impl with parameters of type JSONValue Modifier and Type Method Description static ValidatorValidatorUtil. buildValidator(JSONValue aVal)static ValidatorValidatorUtil. buildValidator(JSONValue aVal, java.util.HashMap<java.lang.String,Validator> aRuleset) -
Uses of JSONValue in com.sdicons.json.validator.impl.predicates
Fields in com.sdicons.json.validator.impl.predicates with type parameters of type JSONValue Modifier and Type Field Description private java.util.List<JSONValue>Enumeration. enumValuesprivate java.util.List<JSONValue>Switch.Case. valuesMethods in com.sdicons.json.validator.impl.predicates with parameters of type JSONValue Modifier and Type Method Description protected voidPredicate. fail(JSONValue aValue)protected voidPredicate. fail(java.lang.String aMessage, JSONValue aValue)booleanSwitch.Case. isApplicable(JSONValue aVal)voidAnd. validate(JSONValue aValue)voidArray. validate(JSONValue aValue)voidBool. validate(JSONValue aValue)voidComplex. validate(JSONValue aValue)voidContent. validate(JSONValue aValue)voidCustomPredicate. validate(JSONValue aValue)voidDecimal. validate(JSONValue aValue)voidEnumeration. validate(JSONValue aValue)voidFalse. validate(JSONValue aValue)voidInt. validate(JSONValue aValue)voidLength. validate(JSONValue aValue)voidLet. validate(JSONValue aValue)voidNot. validate(JSONValue aValue)voidNr. validate(JSONValue aValue)voidNull. validate(JSONValue aValue)voidObject. validate(JSONValue aValue)voidOr. validate(JSONValue aValue)voidProperties. validate(JSONValue aValue)voidRange. validate(JSONValue aValue)voidRef. validate(JSONValue aValue)voidRegexp. validate(JSONValue aValue)voidSimple. validate(JSONValue aValue)voidStr. validate(JSONValue aValue)voidSwitch. validate(JSONValue aValue)voidTrue. validate(JSONValue aValue)Constructor parameters in com.sdicons.json.validator.impl.predicates with type arguments of type JSONValue Constructor Description Case(Validator validator, java.util.List<JSONValue> values)
-