public enum LogicalOperation extends Enum<LogicalOperation>
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
void |
setName(String name) |
static LogicalOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LogicalOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogicalOperation AND
public static final LogicalOperation OR
public static final LogicalOperation NOT
public static final LogicalOperation XOR
public static final LogicalOperation XNOR
public static LogicalOperation[] values()
for (LogicalOperation c : LogicalOperation.values()) System.out.println(c);
public static LogicalOperation 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 nullpublic String getName()
public void setName(String name)
Copyright © 2018. All rights reserved.