public static enum Constants.Logical extends Enum<Constants.Logical>
| Enum Constant and Description |
|---|
AND
And logical.
|
NOT
Not logical.
|
OR
Or logical.
|
| Modifier and Type | Method and Description |
|---|---|
static Constants.Logical |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.Logical[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Logical OR
public static final Constants.Logical AND
public static final Constants.Logical NOT
public static Constants.Logical[] values()
for (Constants.Logical c : Constants.Logical.values()) System.out.println(c);
public static Constants.Logical 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 © 2020. All rights reserved.