Package com.yahoo.search.federation
Enum ProviderConfig.PingOption.Enum
- java.lang.Object
-
- java.lang.Enum<ProviderConfig.PingOption.Enum>
-
- com.yahoo.search.federation.ProviderConfig.PingOption.Enum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ProviderConfig.PingOption.Enum>
- Enclosing class:
- ProviderConfig.PingOption
public static enum ProviderConfig.PingOption.Enum extends java.lang.Enum<ProviderConfig.PingOption.Enum>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProviderConfig.PingOption.Enum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ProviderConfig.PingOption.Enum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DISABLE
public static final ProviderConfig.PingOption.Enum DISABLE
-
NORMAL
public static final ProviderConfig.PingOption.Enum NORMAL
-
YCA
public static final ProviderConfig.PingOption.Enum YCA
-
-
Method Detail
-
values
public static ProviderConfig.PingOption.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 (ProviderConfig.PingOption.Enum c : ProviderConfig.PingOption.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 ProviderConfig.PingOption.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
-
-