Enum AsFeatureFlag

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<AsFeatureFlag>

    public enum AsFeatureFlag
    extends java.lang.Enum<AsFeatureFlag>
    Cache scopes.
    • 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_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 name
        java.lang.NullPointerException - if the argument is null