public enum ETableAttributeType extends Enum<ETableAttributeType>
Enum Constant and Description |
---|
ttDistKey |
ttDistStyle |
ttSortKey |
ttUnknown |
Modifier and Type | Method and Description |
---|---|
static ETableAttributeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETableAttributeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETableAttributeType ttUnknown
public static final ETableAttributeType ttDistStyle
public static final ETableAttributeType ttDistKey
public static final ETableAttributeType ttSortKey
public static ETableAttributeType[] values()
for (ETableAttributeType c : ETableAttributeType.values()) System.out.println(c);
public static ETableAttributeType 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 null