Class JsonElementTypes
- java.lang.Object
-
- org.hibernate.search.backend.elasticsearch.gson.impl.JsonElementTypes
-
public final class JsonElementTypes extends Object
-
-
Field Summary
Fields Modifier and Type Field Description static JsonElementType<com.google.gson.JsonArray>ARRAYstatic JsonElementType<BigDecimal>BIG_DECIMALstatic JsonElementType<BigInteger>BIG_INTEGERstatic JsonElementType<Boolean>BOOLEANstatic JsonElementType<Byte>BYTEstatic JsonElementType<Double>DOUBLEstatic JsonElementType<Float>FLOATstatic JsonElementType<Integer>INTEGERstatic JsonElementType<Long>LONGstatic JsonElementType<com.google.gson.JsonObject>OBJECTstatic JsonElementType<Short>SHORTstatic JsonElementType<String>STRING
-
-
-
Field Detail
-
OBJECT
public static final JsonElementType<com.google.gson.JsonObject> OBJECT
-
ARRAY
public static final JsonElementType<com.google.gson.JsonArray> ARRAY
-
STRING
public static final JsonElementType<String> STRING
-
BOOLEAN
public static final JsonElementType<Boolean> BOOLEAN
-
INTEGER
public static final JsonElementType<Integer> INTEGER
-
LONG
public static final JsonElementType<Long> LONG
-
FLOAT
public static final JsonElementType<Float> FLOAT
-
DOUBLE
public static final JsonElementType<Double> DOUBLE
-
BYTE
public static final JsonElementType<Byte> BYTE
-
SHORT
public static final JsonElementType<Short> SHORT
-
BIG_DECIMAL
public static final JsonElementType<BigDecimal> BIG_DECIMAL
-
BIG_INTEGER
public static final JsonElementType<BigInteger> BIG_INTEGER
-
-