Uses of Interface
org.ghotibeaun.json.JSONObject
-
Uses of JSONObject in org.ghotibeaun.json
Methods in org.ghotibeaun.json that return JSONObject Modifier and Type Method Description default JSONObject
JSONNode. asJSONObject()
Return the JSONNode as a JSONObjectJSONObject
JSONArray. getJSONObject(int index)
Return a JSONOBject valueJSONObject
JSONObject. getJSONObject(String key)
Return a JSONObject with the associated keydefault JSONObject
JSONObject. mergeToCopy(JSONObject secondary, ArrayConflict arrayConflict, ObjectConflict objectConflict)
Merge the current JSONObject instance with another and return the merged instance.Methods in org.ghotibeaun.json with parameters of type JSONObject Modifier and Type Method Description void
JSONArray. add(JSONObject obj)
Add a JSONObject valuedefault void
JSONObject. merge(JSONObject secondary, ArrayConflict arrayConflict, ObjectConflict objectConflict)
Merge another JSONObject into this instance.default JSONObject
JSONObject. mergeToCopy(JSONObject secondary, ArrayConflict arrayConflict, ObjectConflict objectConflict)
Merge the current JSONObject instance with another and return the merged instance.void
JSONObject. put(String key, JSONObject o)
Adds or replaces a JSONObject value -
Uses of JSONObject in org.ghotibeaun.json.converters
Methods in org.ghotibeaun.json.converters that return JSONObject Modifier and Type Method Description abstract JSONObject
AbstractClassConverter. convertToJSONObject(Map<String,?> source)
abstract JSONObject
AbstractClassConverter. convertToJSONObject(Map<String,?> source, Class<?> targetClass)
abstract JSONObject
AbstractClassConverter. convertToJSONObject(Map<String,?> source, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass)
abstract JSONObject
AbstractClassConverter. convertToJSONObject(Map<String,?> source, ValueConverter<?> converter)
abstract <T> JSONObject
AbstractClassConverter. convertToJSONObject(T source)
JSONObject
ClassConverter. convertToJSONObject(Map<String,?> source)
Convert a Map to a JSONObject.JSONObject
ClassConverter. convertToJSONObject(Map<String,?> source, Class<?> targetClass)
Convert a Map to a JSONObject.JSONObject
ClassConverter. convertToJSONObject(Map<String,?> source, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass)
Convert a Map to JSONObject.JSONObject
ClassConverter. convertToJSONObject(Map<String,?> source, ValueConverter<?> converter)
Convert a Map to a JSONObject.<T> JSONObject
ClassConverter. convertToJSONObject(T source)
Convert to a JSONObjectstatic JSONObject
Converters. convertToJSONObject(Map<String,?> source, Class<?> targetClass, ConverterOption<?>... options)
Convert a Map to a JSONObject.static JSONObject
Converters. convertToJSONObject(Map<String,?> source, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass, ConverterOption<?>... options)
Convert a Map to a JSONObject.static JSONObject
Converters. convertToJSONObject(Map<String,?> source, ConverterOption<?>... options)
Convert a Map to a JSONObject.static JSONObject
Converters. convertToJSONObject(Map<String,?> source, ValueConverter<?> converter, ConverterOption<?>... options)
Convert a Map to a JSONObject.static <T> JSONObject
Converters. convertToJSONObject(T source, ConverterOption<?>... options)
Convert to a JSONObjectMethods in org.ghotibeaun.json.converters with parameters of type JSONObject Modifier and Type Method Description abstract <T> T
AbstractJSONConverter. convertToClass(Class<T> targetClass, JSONObject json)
static <T> T
Converters. convertToClass(Class<T> targetClass, JSONObject jsonObject, ConverterOption<?>... options)
Convert a JSONObject into a Class instance<T> T
JSONConverter. convertToClass(Class<T> targetClass, JSONObject json)
Convert a JSONObject into a Class instance -
Uses of JSONObject in org.ghotibeaun.json.converters.utils
Methods in org.ghotibeaun.json.converters.utils that return JSONObject Modifier and Type Method Description JSONObject
ClassScanner.Validation. getContext()
JSONObject
GetterMethodReference. getJSON()
JSONObject
MethodReference. getJSON()
JSONObject
SetterMethodReference. getJSON()
JSONObject
ClassScanner.Validation. getScanRef()
JSONObject
ScannerEntry. toJSON()
JSONObject
ScannerList. toJSON()
Methods in org.ghotibeaun.json.converters.utils with parameters of type JSONObject Modifier and Type Method Description ClassScanner.Validation
ClassScanner. validate(JSONObject referenceJSON)
Constructors in org.ghotibeaun.json.converters.utils with parameters of type JSONObject Constructor Description Validation(Class<?> targetClass, JSONObject context, boolean isValid, List<String> missing, JSONObject scanRef)
-
Uses of JSONObject in org.ghotibeaun.json.factory
Methods in org.ghotibeaun.json.factory that return JSONObject Modifier and Type Method Description static JSONObject
NodeFactory. newJSONObject()
static JSONObject
NodeFactory. newJSONObject(Map<String,?> map)
Methods in org.ghotibeaun.json.factory that return types with arguments of type JSONObject Modifier and Type Method Description static JSONValue<JSONObject>
NodeFactory. newJSONObjectValue(JSONObject value)
Methods in org.ghotibeaun.json.factory with parameters of type JSONObject Modifier and Type Method Description static JSONValue<JSONObject>
NodeFactory. newJSONObjectValue(JSONObject value)
-
Uses of JSONObject in org.ghotibeaun.json.merge.strategies
Methods in org.ghotibeaun.json.merge.strategies with parameters of type JSONObject Modifier and Type Method Description void
AcceptPrimaryConflictStrategy. apply(JSONObject context, String propertyValue, JSONValue<?> primaryValue, JSONValue<?> secondaryValue)
void
AcceptSecondaryConflictStrategy. apply(JSONObject context, String propertyValue, JSONValue<?> primaryValue, JSONValue<?> secondaryValue)
void
AppendObjectConflictStrategy. apply(JSONObject context, String propertyValue, JSONValue<?> primaryValue, JSONValue<?> secondaryValue)
-
Uses of JSONObject in org.ghotibeaun.json.parser
Methods in org.ghotibeaun.json.parser that return JSONObject Modifier and Type Method Description JSONObject
JSONParser. newJSONObject()
Create an empty JSONObject -
Uses of JSONObject in org.ghotibeaun.json.parser.csv
Methods in org.ghotibeaun.json.parser.csv that return JSONObject Modifier and Type Method Description JSONObject
Row. getJSONObject()
Methods in org.ghotibeaun.json.parser.csv with parameters of type JSONObject Modifier and Type Method Description static CSVSettings
CSVSettings. fromConfiguration(JSONObject configuration)