public static enum IndexDefinition.IndexType extends Enum<IndexDefinition.IndexType>
Enum Constant and Description |
---|
EXTERNAL_SECONDARY_INDEX |
NATIVE_SECONDARY_INDEX |
PRIMARY_KEY_INDEX |
Modifier and Type | Method and Description |
---|---|
static IndexDefinition.IndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexDefinition.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexDefinition.IndexType PRIMARY_KEY_INDEX
public static final IndexDefinition.IndexType NATIVE_SECONDARY_INDEX
public static final IndexDefinition.IndexType EXTERNAL_SECONDARY_INDEX
public static IndexDefinition.IndexType[] values()
for (IndexDefinition.IndexType c : IndexDefinition.IndexType.values()) System.out.println(c);
public static IndexDefinition.IndexType 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 © 1970 The Apache Software Foundation. All rights reserved.