public enum Operators extends Enum<Operators>
| Enum Constant and Description |
|---|
AND
A relation where all operands must be true to be considered.
|
NOT
Logical inversion.
|
OR
A relation where at least one operand must be true to be considered.
|
| Modifier and Type | Method and Description |
|---|---|
static Operators |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operators AND
public static final Operators OR
public static final Operators NOT
public static Operators[] values()
for (Operators c : Operators.values()) System.out.println(c);
public static Operators 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 © 2013. All rights reserved.