public static enum When.LogicalOperator extends Enum<When.LogicalOperator>
Modifier and Type | Method and Description |
---|---|
static When.LogicalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static When.LogicalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final When.LogicalOperator AND
public static final When.LogicalOperator OR
private final String name
public static When.LogicalOperator[] values()
for (When.LogicalOperator c : When.LogicalOperator.values()) System.out.println(c);
public static When.LogicalOperator 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 null