public static enum Matcher.MatcherType extends Enum<Matcher.MatcherType>
FilterType
, except that filters that cannot be compiled, including unrecognized filters, are assigned the type
Matcher.MatcherType.UNDEFINED
.Enum Constant and Description |
---|
AND
The matcher type for AND filters.
|
APPROXIMATE
The matcher type for approximate filters.
|
EQUALITY
The matcher type for equality filters.
|
EXTENSIBLE
The matcher type for extensible matching filters.
|
GREATER_OR_EQUAL
The matcher type for greater or equal filters.
|
LESS_OR_EQUAL
The matcher type for less or equal filters.
|
NOT
The matcher type for NOT filters.
|
OR
The matcher type for OR filters.
|
PRESENT
The matcher type for presence filters.
|
SUBSTRINGS
The matcher type for substring filters.
|
UNDEFINED
The matcher type for filters that could not be compiled (will always yield UNDEFINED).
|
Modifier and Type | Method and Description |
---|---|
static Matcher.MatcherType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Matcher.MatcherType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Matcher.MatcherType EQUALITY
public static final Matcher.MatcherType APPROXIMATE
public static final Matcher.MatcherType GREATER_OR_EQUAL
public static final Matcher.MatcherType LESS_OR_EQUAL
public static final Matcher.MatcherType PRESENT
public static final Matcher.MatcherType SUBSTRINGS
public static final Matcher.MatcherType EXTENSIBLE
public static final Matcher.MatcherType AND
public static final Matcher.MatcherType OR
public static final Matcher.MatcherType NOT
public static final Matcher.MatcherType UNDEFINED
public static Matcher.MatcherType[] values()
for (Matcher.MatcherType c : Matcher.MatcherType.values()) System.out.println(c);
public static Matcher.MatcherType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2010-2018, ForgeRock All Rights Reserved.