| Enum Constant and Description |
|---|
BINARY |
BOOLEAN |
BYTE |
DATE_TIME |
DATE_TIME_OFFSET |
DECIMAL |
DOUBLE |
GUID |
INT_16 |
INT_32 |
INT_64 |
S_BYTE |
SINGLE |
STRING |
TIME |
| Modifier and Type | Method and Description |
|---|---|
static EdmType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdmType BINARY
public static final EdmType BOOLEAN
public static final EdmType BYTE
public static final EdmType DATE_TIME
public static final EdmType DATE_TIME_OFFSET
public static final EdmType DECIMAL
public static final EdmType DOUBLE
public static final EdmType GUID
public static final EdmType INT_16
public static final EdmType INT_32
public static final EdmType INT_64
public static final EdmType S_BYTE
public static final EdmType SINGLE
public static final EdmType STRING
public static final EdmType TIME
public static EdmType 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 static EdmType[] values()
for (EdmType c : EdmType.values()) System.out.println(c);