public static enum IndexToken.IndexType extends java.lang.Enum<IndexToken.IndexType>
| Enum Constant and Description |
|---|
ATTNAME
Attribute names.
|
ATTRIBUTE
Attribute index.
|
FULLTEXT
Full-text index.
|
PATH
Path index.
|
TAG
Tag index.
|
TEXT
Text index.
|
| Modifier and Type | Method and Description |
|---|---|
static IndexToken.IndexType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexToken.IndexType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexToken.IndexType ATTNAME
public static final IndexToken.IndexType TAG
public static final IndexToken.IndexType TEXT
public static final IndexToken.IndexType ATTRIBUTE
public static final IndexToken.IndexType FULLTEXT
public static final IndexToken.IndexType PATH
public static IndexToken.IndexType[] values()
for (IndexToken.IndexType c : IndexToken.IndexType.values()) System.out.println(c);
public static IndexToken.IndexType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null