public enum QueryLogicalOperator extends Enum<QueryLogicalOperator>
Enum Constant and Description |
---|
AND
Logical
AND between two boolean expressions. |
OR
Logical
OR between two boolean expressions. |
Modifier and Type | Method and Description |
---|---|
static QueryLogicalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryLogicalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryLogicalOperator AND
AND
between two boolean expressions.public static final QueryLogicalOperator OR
OR
between two boolean expressions.public static QueryLogicalOperator[] values()
for (QueryLogicalOperator c : QueryLogicalOperator.values()) System.out.println(c);
public static QueryLogicalOperator 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 © Veeva Systems 2017–2023. All rights reserved.