Enum Filter.FilterType

    • Enum Constant Detail

      • EQUALITY

        public static final Filter.FilterType EQUALITY
        The filter type for equality filters.
      • APPROXIMATE

        public static final Filter.FilterType APPROXIMATE
        The filter type for approximate filters.
      • EXTENSIBLE

        public static final Filter.FilterType EXTENSIBLE
        The filter type for extensible matching filters.
      • SUBSTRINGS

        public static final Filter.FilterType SUBSTRINGS
        The filter type for substring filters.
      • GREATER_OR_EQUAL

        public static final Filter.FilterType GREATER_OR_EQUAL
        The filter type for greater or equal filters.
      • LESS_OR_EQUAL

        public static final Filter.FilterType LESS_OR_EQUAL
        The filter type for less or equal filters.
      • PRESENT

        public static final Filter.FilterType PRESENT
        The filter type for presence filters.
      • UNRECOGNIZED

        public static final Filter.FilterType UNRECOGNIZED
        The filter type for unrecognized filter types.
    • Method Detail

      • values

        public static Filter.FilterType[] 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 (Filter.FilterType c : Filter.FilterType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Filter.FilterType valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null