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