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