public enum TypeMarker extends java.lang.Enum<TypeMarker>
| Enum Constant and Description |
|---|
BIG_DECIMAL |
BOOLEAN |
BYTE_ARRAY |
DATE |
DOUBLE |
FLOAT |
GENERIC |
INTEGER |
LOCAL_DATE |
LOCAL_DATE_TIME |
LOCAL_TIME |
LONG |
STRING |
TIME |
TIMESTAMP |
| Modifier and Type | Method and Description |
|---|---|
static TypeMarker |
fromObject(java.lang.Object obj) |
static TypeMarker |
fromValue(byte value) |
java.lang.Class<?> |
getType() |
byte |
getValue() |
static TypeMarker |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeMarker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeMarker STRING
public static final TypeMarker INTEGER
public static final TypeMarker LONG
public static final TypeMarker DOUBLE
public static final TypeMarker FLOAT
public static final TypeMarker BOOLEAN
public static final TypeMarker BIG_DECIMAL
public static final TypeMarker DATE
public static final TypeMarker TIME
public static final TypeMarker TIMESTAMP
public static final TypeMarker LOCAL_DATE
public static final TypeMarker LOCAL_TIME
public static final TypeMarker LOCAL_DATE_TIME
public static final TypeMarker BYTE_ARRAY
public static final TypeMarker GENERIC
public static TypeMarker[] values()
for (TypeMarker c : TypeMarker.values()) System.out.println(c);
public static TypeMarker valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic byte getValue()
public java.lang.Class<?> getType()
public static TypeMarker fromValue(byte value)
public static TypeMarker fromObject(java.lang.Object obj)