public enum ETableKind extends Enum<ETableKind>
Enum Constant and Description |
---|
etkBase |
etkExternal |
etkGlobalTemp |
etkGlobalTemporary |
etkLocalTemp |
etkLocalTemporary |
etkMultiset |
etkSet |
etkTemp |
etkTemporary |
etkVolatile |
Modifier and Type | Method and Description |
---|---|
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 etkSet
public static final ETableKind etkMultiset
public static final ETableKind etkExternal
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 nullCopyright © 2019. All rights reserved.