Enum AsFeatureFlag
- java.lang.Object
-
- java.lang.Enum<AsFeatureFlag>
-
- de.hybris.platform.adaptivesearch.strategies.AsFeatureFlag
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AsFeatureFlag>
public enum AsFeatureFlag extends java.lang.Enum<AsFeatureFlag>
Cache scopes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FACET_SORTFACET_TOP_VALUESFACET_TOP_VALUES_PROVIDERFACET_VALUE_RANGESFACET_VALUES_DISPLAY_NAME_PROVIDERFACET_VALUES_SORT_PROVIDER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AsFeatureFlagvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AsFeatureFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FACET_VALUES_SORT_PROVIDER
public static final AsFeatureFlag FACET_VALUES_SORT_PROVIDER
-
FACET_VALUES_DISPLAY_NAME_PROVIDER
public static final AsFeatureFlag FACET_VALUES_DISPLAY_NAME_PROVIDER
-
FACET_TOP_VALUES_PROVIDER
public static final AsFeatureFlag FACET_TOP_VALUES_PROVIDER
-
FACET_TOP_VALUES
public static final AsFeatureFlag FACET_TOP_VALUES
-
FACET_SORT
public static final AsFeatureFlag FACET_SORT
-
FACET_VALUE_RANGES
public static final AsFeatureFlag FACET_VALUE_RANGES
-
-
Method Detail
-
values
public static AsFeatureFlag[] 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 (AsFeatureFlag c : AsFeatureFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AsFeatureFlag 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
-
-