public class SearchOperator extends Object implements Serializable
Modifier and Type | Field and Description |
---|---|
static SearchOperator |
CASE_INSENSITIVE_EQUALS
The case insensitive equals operator
|
static SearchOperator |
CASE_INSENSITIVE_LIKE
The case insensitive like operator
|
static SearchOperator |
CASE_INSENSITIVE_NOT_EQUALS
The case insensitive NOT equals operator
|
static SearchOperator |
CASE_INSENSITIVE_NOT_LIKE
The case insensitive NOT like operator
|
static SearchOperator |
CONTAINS
The operator "CONTAINS".
|
static SearchOperator |
EQUALS
The operator equals.
|
static SearchOperator |
GREATER_THAN
The operator greater than.
|
static SearchOperator |
GREATER_THAN_OR_EQUAL_TO
The operator greater than or equal to.
|
protected String |
identifier
The string representation of the operator.
|
static SearchOperator |
IS_NOT_NULL
The operator "is not null".
|
static SearchOperator |
IS_NULL
The operator "is null".
|
static SearchOperator |
LESS_THAN
The operator less than.
|
static SearchOperator |
LESS_THAN_OR_EQUAL_TO
The operator less than or equal to.
|
static SearchOperator |
LIKE
The operator "like".
|
static SearchOperator |
NOT_EQUALS
The operator not equals.
|
static SearchOperator |
NOT_LIKE
The operator "not like".
|
Constructor and Description |
---|
SearchOperator(String id)
Constructs the SearchOperator with a string representation.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object o)
Returns true if the input parameter is the same as this object.
|
int |
hashCode()
Returns a hashcode value for the object.
|
boolean |
isCaseInsensitive()
Determines if the search operator is case-insensitive
|
SearchOperator |
negate()
Returns the opposite SearchOperator (eg.
|
String |
toString()
Gets the string representation of the operator.
|
public static final SearchOperator EQUALS
public static final SearchOperator CASE_INSENSITIVE_EQUALS
public static final SearchOperator CASE_INSENSITIVE_NOT_EQUALS
public static final SearchOperator NOT_EQUALS
public static final SearchOperator LESS_THAN
public static final SearchOperator LESS_THAN_OR_EQUAL_TO
public static final SearchOperator GREATER_THAN
public static final SearchOperator GREATER_THAN_OR_EQUAL_TO
public static final SearchOperator IS_NULL
public static final SearchOperator IS_NOT_NULL
public static final SearchOperator LIKE
public static final SearchOperator CASE_INSENSITIVE_LIKE
public static final SearchOperator CASE_INSENSITIVE_NOT_LIKE
public static final SearchOperator NOT_LIKE
public static final SearchOperator CONTAINS
protected String identifier
public SearchOperator(String id)
id
- The string representation of the operator.public String toString()
public boolean equals(Object o)
public int hashCode()
public boolean isCaseInsensitive()
public SearchOperator negate()
HDR Glossary HDR Concept Lists HDR Exceptions HDR Programmer's Guide HDR Implementation Guide HDR Profile Options
Copyright © 2016, 2018, Oracle. All rights reserved