|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SCIMFilterType>
com.unboundid.scim.sdk.SCIMFilterType
public enum SCIMFilterType
This enumeration defines the set of possible filter types that may be used for SCIM query filters.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
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 name
NullPointerException - if the argument is nullpublic String getStringValue()
public String toString()
toString in class Enum<SCIMFilterType>
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||