Uses of Interface
org.ghotibeaun.json.JSONArray
| Package | Description |
|---|---|
| org.ghotibeaun.json | |
| org.ghotibeaun.json.converters | |
| org.ghotibeaun.json.factory | |
| org.ghotibeaun.json.jsonpath | |
| org.ghotibeaun.json.merge.strategies | |
| org.ghotibeaun.json.parser |
-
Uses of JSONArray in org.ghotibeaun.json
Methods in org.ghotibeaun.json that return JSONArray Modifier and Type Method Description default JSONArrayJSONNode. asJSONArray()Return the JSONNode as a JSONArrayJSONArrayJSONArray. getJSONArray(int index)Return a JSONArray valueJSONArrayJSONObject. getJSONArray(String key)Return a JSONArraydefault JSONArrayJSONArray. mergeToCopy(JSONArray secondary, ArrayConflict arrayConflict, ObjectConflict objectConflict)Merge the current JSONArray instance with another and return the merged instance.default JSONArrayJSONNode. select(String jsonPath)Select a value from the JSONNode using a JSON-Path expression.default JSONArrayJSONNode. select(String jsonPath, com.jayway.jsonpath.Criteria criteria, com.jayway.jsonpath.Option... options)Select a value from the JSONNode using a JSON-Path expression.default JSONArrayJSONNode. select(String jsonPath, com.jayway.jsonpath.Option... options)Select a value from the JSONNode using a JSON-Path expression.Methods in org.ghotibeaun.json with parameters of type JSONArray Modifier and Type Method Description voidJSONArray. add(JSONArray array)Add a JSONArray valuedefault voidJSONArray. merge(JSONArray secondary, ArrayConflict arrayConflict, ObjectConflict objectConflict)Merge another JSONArray into this instance.default JSONArrayJSONArray. mergeToCopy(JSONArray secondary, ArrayConflict arrayConflict, ObjectConflict objectConflict)Merge the current JSONArray instance with another and return the merged instance.voidJSONObject. put(String key, JSONArray a)Adds or replaces a JSONArray value -
Uses of JSONArray in org.ghotibeaun.json.converters
Methods in org.ghotibeaun.json.converters that return JSONArray Modifier and Type Method Description abstract JSONArrayAbstractClassConverter. convertToJSONArray(List<?> source)abstract JSONArrayAbstractClassConverter. convertToJSONArray(List<?> source, Class<?> targetClass)abstract JSONArrayAbstractClassConverter. convertToJSONArray(List<?> source, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass)abstract JSONArrayAbstractClassConverter. convertToJSONArray(List<?> source, ValueConverter<?> valueConverter)JSONArrayClassConverter. convertToJSONArray(List<?> source)Convert a list to a JSONArrayJSONArrayClassConverter. convertToJSONArray(List<?> source, Class<?> targetClass)Convert a List to a JSONArrayJSONArrayClassConverter. convertToJSONArray(List<?> source, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass)Convert a List to a JSONArrayJSONArrayClassConverter. convertToJSONArray(List<?> source, ValueConverter<?> valueConverter)Convert a List to a JSONArraystatic JSONArrayConverters. convertToJSONArray(List<?> source, Class<?> targetClass, ConverterOption<?>... options)static JSONArrayConverters. convertToJSONArray(List<?> source, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass, ConverterOption<?>... options)static JSONArrayConverters. convertToJSONArray(List<?> source, ConverterOption<?>... options)static JSONArrayConverters. convertToJSONArray(List<?> source, ValueConverter<?> valueConverter, ConverterOption<?>... options)Methods in org.ghotibeaun.json.converters with parameters of type JSONArray Modifier and Type Method Description abstract <T> List<T>AbstractJSONConverter. convertToList(Class<T> targetItemClass, JSONArray array, Optional<ValueConverter<?>> valueConverter)Deprecated.abstract <T> List<T>AbstractJSONConverter. convertToList(JSONArray array, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass)static <T> List<T>Converters. convertToList(Class<T> targetClass, JSONArray jsonArray, Optional<ValueConverter<?>> valueConverter, ConverterOption<?>... options)Deprecated.static <T> List<T>Converters. convertToList(JSONArray array, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass, ConverterOption<?>... options)<T> List<T>JSONConverter. convertToList(Class<T> targetItemClass, JSONArray array, Optional<ValueConverter<?>> valueConverter)Deprecated.<T> List<T>JSONConverter. convertToList(JSONArray array, Optional<ValueConverter<?>> valueConverter, Optional<Class<?>> targetClass) -
Uses of JSONArray in org.ghotibeaun.json.factory
Methods in org.ghotibeaun.json.factory that return JSONArray Modifier and Type Method Description static JSONArrayNodeFactory. newJSONArray()static JSONArrayNodeFactory. newJSONArray(List<Object> list)Methods in org.ghotibeaun.json.factory that return types with arguments of type JSONArray Modifier and Type Method Description static JSONValue<JSONArray>NodeFactory. newJSONArrayValue(JSONArray value)Methods in org.ghotibeaun.json.factory with parameters of type JSONArray Modifier and Type Method Description static JSONValue<JSONArray>NodeFactory. newJSONArrayValue(JSONArray value) -
Uses of JSONArray in org.ghotibeaun.json.jsonpath
Methods in org.ghotibeaun.json.jsonpath that return JSONArray Modifier and Type Method Description JSONArrayJSONPath. evaluate(InputStream jsonInputStream)Parses a JSON InputStream and returns a list of JSON valuesJSONArrayJSONPath. evaluate(String jsonString)Parses a JSON string and returns a list of JSON valuesJSONArrayJSONPath. select(JSONNode context)Return a list of JSON values from a JSONNode context. -
Uses of JSONArray in org.ghotibeaun.json.merge.strategies
Methods in org.ghotibeaun.json.merge.strategies with parameters of type JSONArray Modifier and Type Method Description voidAppendArrayConflictStrategy. apply(JSONArray context, Integer propertyValue, JSONValue<?> primaryValue, JSONValue<?> secondaryValue)voidDeduplicateArrayConflictStrategy. apply(JSONArray context, Integer propertyValue, JSONValue<?> primaryValue, JSONValue<?> secondaryValue)voidInsertAfterConflictStrategy. apply(JSONArray context, Integer propertyValue, JSONValue<?> primaryValue, JSONValue<?> secondaryValue)voidInsertBeforeConflictStrategy. apply(JSONArray context, Integer propertyValue, JSONValue<?> primaryValue, JSONValue<?> secondaryValue) -
Uses of JSONArray in org.ghotibeaun.json.parser
Methods in org.ghotibeaun.json.parser that return JSONArray Modifier and Type Method Description JSONArrayJSONParser. newJSONArray()Create an empty JSONArray