public enum QueryTimingType extends java.lang.Enum<QueryTimingType>
Enum Constant and Description |
---|
ADVANCE |
BUILD_SCORER |
CREATE_WEIGHT |
MATCH |
NEXT_DOC |
SCORE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static QueryTimingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueryTimingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryTimingType CREATE_WEIGHT
public static final QueryTimingType BUILD_SCORER
public static final QueryTimingType NEXT_DOC
public static final QueryTimingType ADVANCE
public static final QueryTimingType MATCH
public static final QueryTimingType SCORE
public static QueryTimingType[] values()
for (QueryTimingType c : QueryTimingType.values()) System.out.println(c);
public static QueryTimingType 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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<QueryTimingType>