public enum LogicalOperator extends java.lang.Enum<LogicalOperator> implements ValueEnum
Enum Constant and Description |
---|
AND
true if all criteria are true
|
NOT
true if all criteria are false
|
OR
true if any criteria are true
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static LogicalOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogicalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalOperator AND
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "and".
public static final LogicalOperator OR
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "or".
public static final LogicalOperator NOT
If this enumerated value is used in a Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "not".
public static LogicalOperator[] values()
for (LogicalOperator c : LogicalOperator.values()) System.out.println(c);
public static LogicalOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null