public class SetSearchOperator extends SearchOperator implements Serializable
Modifier and Type | Field and Description |
---|---|
static SetSearchOperator |
ALL
This SetSearchOperator specifies that the result must match all of the
values in the supplied set.
|
static SetSearchOperator |
ANY
This SetSearchOperator specifies that the result should match any of the
values in the supplied set.
|
static SetSearchOperator |
NONE
This SetSearchOperator specifies that the result must match none of the
values in the supplied set.
|
CASE_INSENSITIVE_EQUALS, CASE_INSENSITIVE_LIKE, CASE_INSENSITIVE_NOT_EQUALS, CASE_INSENSITIVE_NOT_LIKE, CONTAINS, EQUALS, GREATER_THAN, GREATER_THAN_OR_EQUAL_TO, identifier, IS_NOT_NULL, IS_NULL, LESS_THAN, LESS_THAN_OR_EQUAL_TO, LIKE, NOT_EQUALS, NOT_LIKE
Modifier | Constructor and Description |
---|---|
protected |
SetSearchOperator(String id)
Constructs the SearchOperator with a string representation.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object anObject)
Returns true if the input parameter is the same as this object.
|
int |
hashCode()
Returns a hashcode value for the object.
|
String |
toString()
Gets the string representation of the unary operator.
|
isCaseInsensitive, negate
public static final SetSearchOperator ANY
This SetSearchOperator specifies that the result should match any of the values in the supplied set.
For example, the method
actAttributeCriteria.setSpecialAccommodationCode(SetSearchOperator.ANY, CE[] codes)
specifies that matching acts must have at least one of the values in
codes
.
public static final SetSearchOperator ALL
This SetSearchOperator specifies that the result must match all of the values in the supplied set.
For example, the method
actAttributeCriteria.setSpecialAccommodationCode(SetSearchOperator.ALL, CE[] codes)
specifies that matching acts must include all of the values supplied in
codes
.
public static final SetSearchOperator NONE
This SetSearchOperator specifies that the result must match none of the values in the supplied set.
For example, the method
actAttributeCriteria.setSpecialAccommodationCode(SetSearchOperator.NONE, CE[] codes)
specifies that matching acts must have have none of the values in
codes
.
protected SetSearchOperator(String id)
id
- the string representation of the operator.public String toString()
toString
in class SearchOperator
public boolean equals(Object anObject)
equals
in class SearchOperator
anObject
- The UnarySearchOperator to compare this object to.public int hashCode()
hashCode
in class SearchOperator
HDR Glossary HDR Concept Lists HDR Exceptions HDR Programmer's Guide HDR Implementation Guide HDR Profile Options
Copyright © 2016, 2018, Oracle. All rights reserved