public enum Logic extends Enum<Logic>
Enum Constant and Description |
---|
AND
This operation is a logical
and (& ) of all subordinate
results |
EXCLUSIVE_OR
This operation is a logical
exclusive or (^ , xor )
of all subordinate results |
IS
A simple operation, not a composite; the results of itself (
= ) |
NOT
This operation is a logical
not (! ) of a subordinate
result |
OR
This operation is a logical
or (| ) of all subordinate
results |
Modifier and Type | Method and Description |
---|---|
static Logic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Logic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logic EXCLUSIVE_OR
exclusive or
(^
, xor
)
of all subordinate resultspublic static Logic[] values()
for (Logic c : Logic.values()) System.out.println(c);
public static Logic 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 © 2006-2012 Ware-Squared Software Development. All Rights Reserved.