Package org.forgerock.opendj.ldap
Enum Class Matcher.MatcherType
- All Implemented Interfaces:
Serializable,Comparable<Matcher.MatcherType>,java.lang.constant.Constable
- Enclosing class:
- Matcher
The types of compiled matcher. These are identical to
FilterType, except that filters that cannot be compiled, including unrecognized filters, are assigned the type
UNDEFINED.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe matcher type for AND filters.The matcher type for approximate filters.The matcher type for equality filters.The matcher type for extensible matching filters.The matcher type for NOT filters.The matcher type for OR filters.The matcher type for ordering filters.The matcher type for presence filters.The matcher type for substring filters.The matcher type for filters that could not be compiled (will always yield UNDEFINED). -
Method Summary
Modifier and TypeMethodDescriptionstatic Matcher.MatcherTypeReturns the enum constant of this class with the specified name.static Matcher.MatcherType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EQUALITY
The matcher type for equality filters. -
APPROXIMATE
The matcher type for approximate filters. -
ORDERING
The matcher type for ordering filters. -
PRESENT
The matcher type for presence filters. -
SUBSTRINGS
The matcher type for substring filters. -
EXTENSIBLE
The matcher type for extensible matching filters. -
AND
The matcher type for AND filters. -
OR
The matcher type for OR filters. -
NOT
The matcher type for NOT filters. -
UNDEFINED
The matcher type for filters that could not be compiled (will always yield UNDEFINED).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-