public static enum Filter.FilterType extends Enum<Filter.FilterType>
Enum Constant and Description |
---|
AND
The filter type for AND filters.
|
APPROXIMATE
The filter type for approximate filters.
|
EQUALITY
The filter type for equality filters.
|
EXTENSIBLE
The filter type for extensible matching filters.
|
GREATER_OR_EQUAL
The filter type for greater or equal filters.
|
LESS_OR_EQUAL
The filter type for less or equal filters.
|
NOT
The filter type for NOT filters.
|
OR
The filter type for OR filters.
|
PRESENT
The filter type for presence filters.
|
SUBSTRINGS
The filter type for substring filters.
|
UNRECOGNIZED
The filter type for unrecognized filter types.
|
Modifier and Type | Method and Description |
---|---|
static Filter.FilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Filter.FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter.FilterType EQUALITY
public static final Filter.FilterType APPROXIMATE
public static final Filter.FilterType EXTENSIBLE
public static final Filter.FilterType SUBSTRINGS
public static final Filter.FilterType GREATER_OR_EQUAL
public static final Filter.FilterType LESS_OR_EQUAL
public static final Filter.FilterType PRESENT
public static final Filter.FilterType AND
public static final Filter.FilterType OR
public static final Filter.FilterType NOT
public static final Filter.FilterType UNRECOGNIZED
public static Filter.FilterType[] values()
for (Filter.FilterType c : Filter.FilterType.values()) System.out.println(c);
public static Filter.FilterType 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.