com.unboundid.scim.sdk
Enum SCIMFilterType

java.lang.Object
  extended by java.lang.Enum<SCIMFilterType>
      extended by com.unboundid.scim.sdk.SCIMFilterType
All Implemented Interfaces:
Serializable, Comparable<SCIMFilterType>

public enum SCIMFilterType
extends 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

AND

public static final SCIMFilterType AND
The filter type for AND filters.


OR

public static final SCIMFilterType OR
The filter type for OR filters.


EQUALITY

public static final SCIMFilterType EQUALITY
The filter type for equality filters.


CONTAINS

public static final SCIMFilterType CONTAINS
The filter type for contains filters.


STARTS_WITH

public static final SCIMFilterType STARTS_WITH
The filter type for starts with filters.


PRESENCE

public static final SCIMFilterType PRESENCE
The filter type for presence filters.


GREATER_THAN

public static final SCIMFilterType GREATER_THAN
The filter type for greater than filters.


GREATER_OR_EQUAL

public static final SCIMFilterType GREATER_OR_EQUAL
The filter type for greater or equal filters.


LESS_THAN

public static final SCIMFilterType LESS_THAN
The filter type for less than filters.


LESS_OR_EQUAL

public static final SCIMFilterType LESS_OR_EQUAL
The filter type for less or equal filters.

Method Detail

values

public static SCIMFilterType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SCIMFilterType c : SCIMFilterType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SCIMFilterType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null

getStringValue

public String getStringValue()
Retrieves the lower case string value for this filter type.

Returns:
The lower case string value for this filter type.

toString

public String toString()
Retrieves a string representation of this filter type.

Overrides:
toString in class Enum<SCIMFilterType>
Returns:
A string representation of this filter type.


Copyright © 2011-2012 UnboundID. All Rights Reserved.