public static enum BooleanFunction.BooleanFunctionType extends Enum<BooleanFunction.BooleanFunctionType>
| Modifier and Type | Method and Description |
|---|---|
static BooleanFunction.BooleanFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BooleanFunction.BooleanFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanFunction.BooleanFunctionType AND
public static final BooleanFunction.BooleanFunctionType OR
public static final BooleanFunction.BooleanFunctionType NOT
public static final BooleanFunction.BooleanFunctionType XOR
public static final BooleanFunction.BooleanFunctionType Parity
public static BooleanFunction.BooleanFunctionType[] values()
for (BooleanFunction.BooleanFunctionType c : BooleanFunction.BooleanFunctionType.values()) System.out.println(c);
public static BooleanFunction.BooleanFunctionType 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 © 2015. All Rights Reserved.