All Methods Static Methods Concrete Methods
Modifier and Type |
Method and Description |
static Object |
appendToArray(Object jsonArray,
Object propertyValue) |
static void |
appendToArrayProperty(Object json,
String arrayPropertyName,
Object propertyValue) |
static com.fasterxml.jackson.databind.node.ArrayNode |
arrayNode() |
static com.fasterxml.jackson.databind.JsonNode |
clone(Object json) |
static Object |
consumeProperty(Object json,
String propertyName) |
static List<Object> |
consumePropertyArray(Object json,
String propertyName) |
static Boolean |
consumePropertyBoolean(Object json,
String propertyName) |
static Number |
consumePropertyNumber(Object json,
String propertyName) |
static Object |
consumePropertyObject(Object json,
String propertyName) |
static String |
consumePropertyString(Object json,
String propertyName) |
static List<String> |
consumePropertyStringArray(Object json,
String propertyName) |
static Object |
getProperty(Object json,
String propertyName) |
static List<Object> |
getPropertyArray(Object json,
String propertyName) |
static Boolean |
getPropertyBoolean(Object json,
String propertyName) |
static Number |
getPropertyNumber(Object json,
String propertyName) |
static Object |
getPropertyObject(Object json,
String propertyName) |
static String |
getPropertyString(Object json,
String propertyName) |
static List<String> |
getPropertyStringArray(Object json,
String propertyName) |
static boolean |
isArray(Object json) |
static boolean |
isBoolean(Object json) |
static boolean |
isNumber(Object json) |
static boolean |
isObject(Object json) |
static boolean |
isPropertyDefined(Object json,
String propertyName) |
static boolean |
isString(Object json) |
static List<String> |
keys(Object json) |
static <T> List<T> |
mapToList(Map<?,T> items) |
static com.fasterxml.jackson.databind.node.NullNode |
nullNode() |
static com.fasterxml.jackson.databind.node.ObjectNode |
objectNode() |
static Object |
parseJSON(String jsonString) |
static Object |
removeNullProperties(Object json) |
static void |
setProperty(Object json,
String propertyName,
Object propertyValue) |
static void |
setPropertyBoolean(Object json,
String propertyName,
Boolean propertyValue) |
static void |
setPropertyNull(Object json,
String propertyName) |
static void |
setPropertyNumber(Object json,
String propertyName,
Number propertyValue) |
static void |
setPropertyString(Object json,
String propertyName,
String propertyValue) |
static void |
setPropertyStringArray(Object json,
String propertyName,
List<String> propertyValue) |
static void |
setToArrayIndex(Object jsonArray,
int index,
Object propertyValue) |
static String |
stringify(Object json) |
static Boolean |
toBoolean(Object json) |
static List<Object> |
toList(Object json) |
static Number |
toNumber(Object json) |
static String |
toString(Object json) |