Package org.forgerock.util.query
Class QueryFilterOperators
- java.lang.Object
-
- org.forgerock.util.query.QueryFilterOperators
-
public final class QueryFilterOperators extends Object
QueryFilter constants.
-
-
Field Summary
Fields Modifier and Type Field Description static String
AND
the "and" operator.static String
CONTAINS
the "contains" operator".static String
EQUALS
the "equals" operator.static String
FALSE
a literal "false.static String
GREATER_EQUAL
the "greater-than-or-equal" operator.static String
GREATER_THAN
the "greater-than" operator.static String
LESS_EQUAL
the "less-than-or-equal" operator.static String
LESS_THAN
the "less-than" operator.static String
NOT
the "or" operator.static String
OR
the "not" operator.static String
PRESENT
the "present" operator.static String
STARTS_WITH
the "starts-with" operator.static String
TRUE
a literal "true".
-
-
-
Field Detail
-
AND
public static final String AND
the "and" operator.- See Also:
- Constant Field Values
-
NOT
public static final String NOT
the "or" operator.- See Also:
- Constant Field Values
-
OR
public static final String OR
the "not" operator.- See Also:
- Constant Field Values
-
TRUE
public static final String TRUE
a literal "true".- See Also:
- Constant Field Values
-
FALSE
public static final String FALSE
a literal "false.- See Also:
- Constant Field Values
-
PRESENT
public static final String PRESENT
the "present" operator.- See Also:
- Constant Field Values
-
EQUALS
public static final String EQUALS
the "equals" operator.- See Also:
- Constant Field Values
-
GREATER_THAN
public static final String GREATER_THAN
the "greater-than" operator.- See Also:
- Constant Field Values
-
GREATER_EQUAL
public static final String GREATER_EQUAL
the "greater-than-or-equal" operator.- See Also:
- Constant Field Values
-
LESS_THAN
public static final String LESS_THAN
the "less-than" operator.- See Also:
- Constant Field Values
-
LESS_EQUAL
public static final String LESS_EQUAL
the "less-than-or-equal" operator.- See Also:
- Constant Field Values
-
CONTAINS
public static final String CONTAINS
the "contains" operator".- See Also:
- Constant Field Values
-
STARTS_WITH
public static final String STARTS_WITH
the "starts-with" operator.- See Also:
- Constant Field Values
-
-