public static enum Field.Types extends java.lang.Enum<Field.Types>
Enum Constant and Description |
---|
NOT_SET |
TYPE_BLOB |
TYPE_DATE |
TYPE_DOUBLE |
TYPE_GEOMETRY |
TYPE_GLOBALID |
TYPE_GUID |
TYPE_INTEGER |
TYPE_OID |
TYPE_RASTER |
TYPE_SINGLE |
TYPE_SMALL_INTEGER |
TYPE_STRING |
TYPE_XML |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static Field.Types |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Field.Types[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Field.Types NOT_SET
public static final Field.Types TYPE_SMALL_INTEGER
public static final Field.Types TYPE_INTEGER
public static final Field.Types TYPE_SINGLE
public static final Field.Types TYPE_DOUBLE
public static final Field.Types TYPE_STRING
public static final Field.Types TYPE_DATE
public static final Field.Types TYPE_OID
public static final Field.Types TYPE_GEOMETRY
public static final Field.Types TYPE_BLOB
public static final Field.Types TYPE_RASTER
public static final Field.Types TYPE_GUID
public static final Field.Types TYPE_GLOBALID
public static final Field.Types TYPE_XML
public static Field.Types[] values()
for (Field.Types c : Field.Types.values()) System.out.println(c);
public static Field.Types 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 java.lang.String getValue()