public static enum CqQuery.Filter.Operation extends Enum<CqQuery.Filter.Operation> implements com.ibm.rational.wvcm.stpex.StpExEnumeration
Enum Constant and Description |
---|
CONJUNCTION
A FilterNode representing the logical AND of its operands
|
DISJUNCTION
A FilterNode representing the logical OR of its operands
|
HAS_NO_SUBSTRING
test that the target is not a substring of the source
|
HAS_SUBSTRING
test that the target is a substring of the source
|
IS_BETWEEN
test that the source is between the two target values
|
IS_EQUAL
test the source and target for equality
|
IS_GREATER_THAN
test that the source is strictly greater than the target
|
IS_GREATER_THAN_OR_EQUAL
test that the source is greater than or equal to the target
|
IS_IN_SET
test that the source is equal to one of the targets
|
IS_LESS_THAN
test that the source is strictly less than the target
|
IS_LESS_THAN_OR_EQUAL
test that the source is less than or equal to the target
|
IS_NOT_BETWEEN
test that the source is not between the two targets
|
IS_NOT_EQUAL
test the source and target for inequality
|
IS_NOT_IN_SET
test that the source is not equal to any of the targets
|
IS_NOT_NULL
test that the source is not null
|
IS_NULL
test that the source is null
|
UNSPECIFIED
A FilterNode with an unspecified operation
|
UNSPECIFIED_COMPARISON
A FilterLeaf with an unspecified comparison
|
Modifier and Type | Method and Description |
---|---|
static CqQuery.Filter.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CqQuery.Filter.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CqQuery.Filter.Operation CONJUNCTION
public static final CqQuery.Filter.Operation DISJUNCTION
public static final CqQuery.Filter.Operation HAS_NO_SUBSTRING
public static final CqQuery.Filter.Operation HAS_SUBSTRING
public static final CqQuery.Filter.Operation IS_BETWEEN
public static final CqQuery.Filter.Operation IS_EQUAL
public static final CqQuery.Filter.Operation IS_GREATER_THAN
public static final CqQuery.Filter.Operation IS_GREATER_THAN_OR_EQUAL
public static final CqQuery.Filter.Operation IS_IN_SET
public static final CqQuery.Filter.Operation IS_LESS_THAN
public static final CqQuery.Filter.Operation IS_LESS_THAN_OR_EQUAL
public static final CqQuery.Filter.Operation IS_NOT_BETWEEN
public static final CqQuery.Filter.Operation IS_NOT_EQUAL
public static final CqQuery.Filter.Operation IS_NOT_IN_SET
public static final CqQuery.Filter.Operation IS_NOT_NULL
public static final CqQuery.Filter.Operation IS_NULL
public static final CqQuery.Filter.Operation UNSPECIFIED
public static final CqQuery.Filter.Operation UNSPECIFIED_COMPARISON
public static CqQuery.Filter.Operation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullpublic static CqQuery.Filter.Operation[] values()
for (CqQuery.Filter.Operation c : CqQuery.Filter.Operation.values()) System.out.println(c);
Copyright © IBM 2017. All rights reserved.