public enum SingleValueOperator extends Enum<SingleValueOperator> implements com.tridion.smarttarget.query.builder.Operator
AttributeCriteria
to define operations on single value attributes.Enum Constant and Description |
---|
EQUALS
Attribute equals the specified value.
|
GREATER_THAN_OR_EQUALS
Attribute is greater than or equal to the specified value.
|
LESS_THAN
Attribute is less then the specified value.
|
Modifier and Type | Method and Description |
---|---|
static SingleValueOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SingleValueOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SingleValueOperator EQUALS
public static final SingleValueOperator LESS_THAN
public static final SingleValueOperator GREATER_THAN_OR_EQUALS
public static SingleValueOperator[] values()
for (SingleValueOperator c : SingleValueOperator.values()) System.out.println(c);
public static SingleValueOperator 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 nullCopyright © 2021 RWS Group for and on behalf of its affiliates and subsidiaries. All rights reserved.