public static enum Column.ColumnType extends java.lang.Enum<Column.ColumnType>
| Enum Constant and Description |
|---|
ATTRIBUTE_GROUP
Attributgruppe
|
DURATION_ATTRIBUTE
Zeitdauer
|
REAL_ATTRIBUTE
Reales Attribut.
|
TEMP_ATTRIBUTE
Temporäres Attribut
|
| Modifier and Type | Method and Description |
|---|---|
static Column.ColumnType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Column.ColumnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Column.ColumnType REAL_ATTRIBUTE
public static final Column.ColumnType TEMP_ATTRIBUTE
public static final Column.ColumnType DURATION_ATTRIBUTE
public static final Column.ColumnType ATTRIBUTE_GROUP
public static Column.ColumnType[] values()
for (Column.ColumnType c : Column.ColumnType.values()) System.out.println(c);
public static Column.ColumnType 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 null