| Enum Constant and Description |
|---|
OpDecrement |
OpIncrement |
OpNeg |
OpNegBits |
OpNot |
| Modifier and Type | Method and Description |
|---|---|
static Unop |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Unop[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Unop OpIncrement
public static final Unop OpDecrement
public static final Unop OpNot
public static final Unop OpNeg
public static final Unop OpNegBits
public static Unop[] values()
for (Unop c : Unop.values()) System.out.println(c);
public static Unop 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