Enum SearchClause.Comparator
- java.lang.Object
-
- java.lang.Enum<SearchClause.Comparator>
-
- org.apache.syncope.client.console.panels.search.SearchClause.Comparator
-
- All Implemented Interfaces:
Serializable
,Comparable<SearchClause.Comparator>
- Enclosing class:
- SearchClause
public static enum SearchClause.Comparator extends Enum<SearchClause.Comparator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EQUALS
GREATER_OR_EQUALS
GREATER_THAN
IS_NOT_NULL
IS_NULL
LESS_OR_EQUALS
LESS_THAN
NOT_EQUALS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchClause.Comparator
valueOf(String name)
Returns the enum constant of this type with the specified name.static SearchClause.Comparator[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IS_NULL
public static final SearchClause.Comparator IS_NULL
-
IS_NOT_NULL
public static final SearchClause.Comparator IS_NOT_NULL
-
EQUALS
public static final SearchClause.Comparator EQUALS
-
NOT_EQUALS
public static final SearchClause.Comparator NOT_EQUALS
-
GREATER_OR_EQUALS
public static final SearchClause.Comparator GREATER_OR_EQUALS
-
GREATER_THAN
public static final SearchClause.Comparator GREATER_THAN
-
LESS_OR_EQUALS
public static final SearchClause.Comparator LESS_OR_EQUALS
-
LESS_THAN
public static final SearchClause.Comparator LESS_THAN
-
-
Method Detail
-
values
public static SearchClause.Comparator[] 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 (SearchClause.Comparator c : SearchClause.Comparator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchClause.Comparator 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 nameNullPointerException
- if the argument is null
-
-