public final class JsonUtil extends Object
Modifier and Type | Method and Description |
---|---|
static com.eclipsesource.json.JsonArray |
getArray(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as an array.
|
static com.eclipsesource.json.JsonArray |
getArray(com.eclipsesource.json.JsonObject object,
String field,
com.eclipsesource.json.JsonArray defaultValue)
Returns a field in a Json object as an array.
|
static boolean |
getBoolean(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as a boolean.
|
static boolean |
getBoolean(com.eclipsesource.json.JsonObject object,
String field,
boolean defaultValue)
Returns a field in a Json object as a boolean.
|
static double |
getDouble(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as a double.
|
static double |
getDouble(com.eclipsesource.json.JsonObject object,
String field,
double defaultValue)
Returns a field in a Json object as a double.
|
static float |
getFloat(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as a float.
|
static float |
getFloat(com.eclipsesource.json.JsonObject object,
String field,
float defaultValue)
Returns a field in a Json object as a float.
|
static int |
getInt(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as an int.
|
static int |
getInt(com.eclipsesource.json.JsonObject object,
String field,
int defaultValue)
Returns a field in a Json object as an int.
|
static long |
getLong(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as a long.
|
static long |
getLong(com.eclipsesource.json.JsonObject object,
String field,
long defaultValue)
Returns a field in a Json object as a long.
|
static com.eclipsesource.json.JsonObject |
getObject(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as an object.
|
static com.eclipsesource.json.JsonObject |
getObject(com.eclipsesource.json.JsonObject object,
String field,
com.eclipsesource.json.JsonObject defaultValue)
Returns a field in a Json object as an object.
|
static String |
getString(com.eclipsesource.json.JsonObject object,
String field)
Returns a field in a Json object as a string.
|
static String |
getString(com.eclipsesource.json.JsonObject object,
String field,
String defaultValue)
Returns a field in a Json object as a string.
|
public static int getInt(com.eclipsesource.json.JsonObject object, String field)
object
- the Json Objectfield
- the field in the Json object to returnpublic static int getInt(com.eclipsesource.json.JsonObject object, String field, int defaultValue)
object
- the Json Objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullpublic static long getLong(com.eclipsesource.json.JsonObject object, String field)
object
- the Json Objectfield
- the field in the Json object to returnpublic static long getLong(com.eclipsesource.json.JsonObject object, String field, long defaultValue)
object
- the Json Objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullpublic static double getDouble(com.eclipsesource.json.JsonObject object, String field)
object
- the Json Objectfield
- the field in the Json object to returnpublic static double getDouble(com.eclipsesource.json.JsonObject object, String field, double defaultValue)
object
- the Json Objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullpublic static float getFloat(com.eclipsesource.json.JsonObject object, String field)
object
- the Json Objectfield
- the field in the Json object to returnpublic static float getFloat(com.eclipsesource.json.JsonObject object, String field, float defaultValue)
object
- the Json Objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullpublic static String getString(com.eclipsesource.json.JsonObject object, String field)
object
- the Json Objectfield
- the field in the Json object to returnpublic static String getString(com.eclipsesource.json.JsonObject object, String field, String defaultValue)
object
- the Json Objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullpublic static boolean getBoolean(com.eclipsesource.json.JsonObject object, String field)
object
- the Json Objectfield
- the field in the Json object to returnpublic static boolean getBoolean(com.eclipsesource.json.JsonObject object, String field, boolean defaultValue)
object
- the Json Objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullpublic static com.eclipsesource.json.JsonArray getArray(com.eclipsesource.json.JsonObject object, String field)
object
- the Json Objectfield
- the field in the Json object to returnpublic static com.eclipsesource.json.JsonArray getArray(com.eclipsesource.json.JsonObject object, String field, com.eclipsesource.json.JsonArray defaultValue)
object
- the Json Objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullpublic static com.eclipsesource.json.JsonObject getObject(com.eclipsesource.json.JsonObject object, String field)
object
- the Json objectfield
- the field in the Json object to returnpublic static com.eclipsesource.json.JsonObject getObject(com.eclipsesource.json.JsonObject object, String field, com.eclipsesource.json.JsonObject defaultValue)
object
- the Json objectfield
- the field in the Json object to returndefaultValue
- a default value for the field if the field value is nullCopyright © 2016 Hazelcast, Inc.. All Rights Reserved.