public enum SCIMFilterType extends Enum<SCIMFilterType>
| Enum Constant and Description |
|---|
AND
The filter type for AND filters.
|
CONTAINS
The filter type for contains filters.
|
EQUALITY
The filter type for equality filters.
|
GREATER_OR_EQUAL
The filter type for greater or equal filters.
|
GREATER_THAN
The filter type for greater than filters.
|
LESS_OR_EQUAL
The filter type for less or equal filters.
|
LESS_THAN
The filter type for less than filters.
|
OR
The filter type for OR filters.
|
PRESENCE
The filter type for presence filters.
|
STARTS_WITH
The filter type for starts with filters.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getStringValue()
Retrieves the lower case string value for this filter type.
|
String |
toString()
Retrieves a string representation of this filter type.
|
static SCIMFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SCIMFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCIMFilterType AND
public static final SCIMFilterType OR
public static final SCIMFilterType EQUALITY
public static final SCIMFilterType CONTAINS
public static final SCIMFilterType STARTS_WITH
public static final SCIMFilterType PRESENCE
public static final SCIMFilterType GREATER_THAN
public static final SCIMFilterType GREATER_OR_EQUAL
public static final SCIMFilterType LESS_THAN
public static final SCIMFilterType LESS_OR_EQUAL
public static SCIMFilterType[] values()
for (SCIMFilterType c : SCIMFilterType.values()) System.out.println(c);
public static SCIMFilterType 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 nullpublic String getStringValue()
public String toString()
toString in class Enum<SCIMFilterType>Copyright © 2011–2016 UnboundID. All rights reserved.