Package org.openurp.base.util
Class GsonHelper
java.lang.Object
org.openurp.base.util.GsonHelper
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic BooleangetAsBoolean(com.google.gson.JsonElement element) static DoublegetAsDouble(com.google.gson.JsonElement element) static FloatgetAsFloat(com.google.gson.JsonElement element) static IntegergetAsInteger(com.google.gson.JsonElement element) static LonggetAsLong(com.google.gson.JsonElement element) static booleangetAsPrimitiveBool(com.google.gson.JsonElement element) static doublegetAsPrimitiveDouble(com.google.gson.JsonElement element) static floatgetAsPrimitiveFloat(com.google.gson.JsonElement element) static intgetAsPrimitiveInt(com.google.gson.JsonElement element) static longgetAsPrimitiveLong(com.google.gson.JsonElement element) static StringgetAsString(com.google.gson.JsonElement element) static BooleangetBoolean(com.google.gson.JsonObject json, String property) static Doublestatic Floatstatic IntegergetInteger(com.google.gson.JsonObject json, String property) static Longstatic doublegetPrimitiveDouble(com.google.gson.JsonObject json, String property) static floatgetPrimitiveFloat(com.google.gson.JsonObject json, String property) static intgetPrimitiveInteger(com.google.gson.JsonObject json, String property) static longgetPrimitiveLong(com.google.gson.JsonObject json, String property) static Stringstatic booleanisNotNull(com.google.gson.JsonElement element) static booleanisNull(com.google.gson.JsonElement element)
-
Constructor Details
-
GsonHelper
public GsonHelper()
-
-
Method Details
-
isNull
public static boolean isNull(com.google.gson.JsonElement element) -
isNotNull
public static boolean isNotNull(com.google.gson.JsonElement element) -
getLong
-
getPrimitiveLong
-
getInteger
-
getPrimitiveInteger
-
getDouble
-
getPrimitiveDouble
-
getFloat
-
getPrimitiveFloat
-
getBoolean
-
getString
-
getAsString
-
getAsLong
-
getAsPrimitiveLong
public static long getAsPrimitiveLong(com.google.gson.JsonElement element) -
getAsInteger
-
getAsPrimitiveInt
public static int getAsPrimitiveInt(com.google.gson.JsonElement element) -
getAsBoolean
-
getAsPrimitiveBool
public static boolean getAsPrimitiveBool(com.google.gson.JsonElement element) -
getAsDouble
-
getAsPrimitiveDouble
public static double getAsPrimitiveDouble(com.google.gson.JsonElement element) -
getAsFloat
-
getAsPrimitiveFloat
public static float getAsPrimitiveFloat(com.google.gson.JsonElement element)
-