public enum ETableKind extends Enum<ETableKind>
Enum Constant and Description |
---|
etkBase |
etkDynamic |
etkExternal |
etkGlobalTemp |
etkGlobalTemporary |
etkGlobalVolatile |
etkHybrid |
etkLocal |
etkLocalTemp |
etkLocalTemporary |
etkLocalVolatile |
etkMultiset |
etkSet |
etkTemp |
etkTemporary |
etkTransient |
etkTransientDynamic |
etkUnlogged |
etkVolatile |
Modifier and Type | Method and Description |
---|---|
static ETableKind |
fromValue(int value) |
int |
getValue() |
static ETableKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ETableKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ETableKind etkBase
public static final ETableKind etkTemporary
public static final ETableKind etkGlobalTemporary
public static final ETableKind etkLocalTemporary
public static final ETableKind etkTemp
public static final ETableKind etkGlobalTemp
public static final ETableKind etkLocalTemp
public static final ETableKind etkVolatile
public static final ETableKind etkLocalVolatile
public static final ETableKind etkGlobalVolatile
public static final ETableKind etkSet
public static final ETableKind etkMultiset
public static final ETableKind etkExternal
public static final ETableKind etkTransient
public static final ETableKind etkLocal
public static final ETableKind etkUnlogged
public static final ETableKind etkDynamic
public static final ETableKind etkHybrid
public static final ETableKind etkTransientDynamic
public static ETableKind[] values()
for (ETableKind c : ETableKind.values()) System.out.println(c);
public static ETableKind 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 int getValue()
public static ETableKind fromValue(int value)