public enum ColumnDataType extends Enum<ColumnDataType>
| Enum Constant and Description |
|---|
Boolean |
Date |
Geometry |
Integer |
Numeric |
Text |
| Modifier and Type | Method and Description |
|---|---|
static List<ColumnDataType> |
asList() |
static ColumnDataType |
getColumnDataTypeFromId(String id) |
String |
getId() |
String |
getLabel() |
String |
toString() |
static ColumnDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnDataType Boolean
public static final ColumnDataType Geometry
public static final ColumnDataType Integer
public static final ColumnDataType Numeric
public static final ColumnDataType Date
public static final ColumnDataType Text
public static ColumnDataType[] values()
for (ColumnDataType c : ColumnDataType.values()) System.out.println(c);
public static ColumnDataType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ColumnDataType>public String getLabel()
public String getId()
public static ColumnDataType getColumnDataTypeFromId(String id)
id - public static List<ColumnDataType> asList()
Copyright © 2015. All Rights Reserved.