Package com.yahoo.search.statistics
Enum TimingSearcherConfig.Timer.Measure.Enum
- java.lang.Object
-
- java.lang.Enum<TimingSearcherConfig.Timer.Measure.Enum>
-
- com.yahoo.search.statistics.TimingSearcherConfig.Timer.Measure.Enum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimingSearcherConfig.Timer.Measure.Enum>
- Enclosing class:
- TimingSearcherConfig.Timer.Measure
public static enum TimingSearcherConfig.Timer.Measure.Enum extends java.lang.Enum<TimingSearcherConfig.Timer.Measure.Enum>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimingSearcherConfig.Timer.Measure.Enum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimingSearcherConfig.Timer.Measure.Enum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FILL
public static final TimingSearcherConfig.Timer.Measure.Enum FILL
-
PING
public static final TimingSearcherConfig.Timer.Measure.Enum PING
-
SEARCH
public static final TimingSearcherConfig.Timer.Measure.Enum SEARCH
-
-
Method Detail
-
values
public static TimingSearcherConfig.Timer.Measure.Enum[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TimingSearcherConfig.Timer.Measure.Enum c : TimingSearcherConfig.Timer.Measure.Enum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimingSearcherConfig.Timer.Measure.Enum valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-