public static enum IndexDefinition.IndexKind extends Enum<IndexDefinition.IndexKind>
| Enum Constant and Description |
|---|
ENUMERATED_VALUE |
NODE_TYPE |
TEXT |
UNIQUE_VALUE |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static IndexDefinition.IndexKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexDefinition.IndexKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexDefinition.IndexKind VALUE
public static final IndexDefinition.IndexKind UNIQUE_VALUE
public static final IndexDefinition.IndexKind ENUMERATED_VALUE
public static final IndexDefinition.IndexKind TEXT
public static final IndexDefinition.IndexKind NODE_TYPE
public static IndexDefinition.IndexKind[] values()
for (IndexDefinition.IndexKind c : IndexDefinition.IndexKind.values()) System.out.println(c);
public static IndexDefinition.IndexKind 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 © 2008-2014 JBoss, a division of Red Hat. All Rights Reserved.