public enum EventTableOrganizationType extends Enum<EventTableOrganizationType>
Enum Constant and Description |
---|
APPLICATION |
BTREE |
COMPOSITE |
HASH |
MULTIINDEX |
UNORGANIZED |
VDW |
Modifier and Type | Method and Description |
---|---|
static EventTableOrganizationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventTableOrganizationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventTableOrganizationType UNORGANIZED
public static final EventTableOrganizationType HASH
public static final EventTableOrganizationType BTREE
public static final EventTableOrganizationType COMPOSITE
public static final EventTableOrganizationType MULTIINDEX
public static final EventTableOrganizationType APPLICATION
public static final EventTableOrganizationType VDW
public static EventTableOrganizationType[] values()
for (EventTableOrganizationType c : EventTableOrganizationType.values()) System.out.println(c);
public static EventTableOrganizationType 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 © 2005–2021. All rights reserved.