public static enum NBoolOp.OpType extends java.lang.Enum<NBoolOp.OpType>
| Modifier and Type | Method and Description |
|---|---|
static NBoolOp.OpType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NBoolOp.OpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NBoolOp.OpType AND
public static final NBoolOp.OpType OR
public static final NBoolOp.OpType UNDEFINED
public static NBoolOp.OpType[] values()
for (NBoolOp.OpType c : NBoolOp.OpType.values()) System.out.println(c);
public static NBoolOp.OpType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null