public enum IndexTypes extends Enum<IndexTypes>
Modifier and Type | Method and Description |
---|---|
String |
getName() |
int |
getType() |
static IndexTypes |
getTypeFor(int type) |
static IndexTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexTypes INVALID
public static final IndexTypes BTREE
public static final IndexTypes INVERTED
public static IndexTypes[] values()
for (IndexTypes c : IndexTypes.values()) System.out.println(c);
public static IndexTypes 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 getType()
public String getName()
public static IndexTypes getTypeFor(int type)
Copyright © 2015. All rights reserved.