public static enum AbstractIndex.IndexType extends Enum<AbstractIndex.IndexType>
| Enum Constant and Description |
|---|
FULL_TEXT |
PREDICTIVE |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static AbstractIndex.IndexType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractIndex.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractIndex.IndexType VALUE
public static final AbstractIndex.IndexType FULL_TEXT
public static final AbstractIndex.IndexType PREDICTIVE
public static AbstractIndex.IndexType[] values()
for (AbstractIndex.IndexType c : AbstractIndex.IndexType.values()) System.out.println(c);
public static AbstractIndex.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 nullpublic int getValue()