public static enum IUnaryOpInstruction.Operator extends Enum<IUnaryOpInstruction.Operator> implements IUnaryOpInstruction.IOperator
| Enum Constant and Description |
|---|
NEG |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static IUnaryOpInstruction.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IUnaryOpInstruction.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IUnaryOpInstruction.Operator NEG
public static IUnaryOpInstruction.Operator[] values()
for (IUnaryOpInstruction.Operator c : IUnaryOpInstruction.Operator.values()) System.out.println(c);
public static IUnaryOpInstruction.Operator 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 toString()
toString in class Enum<IUnaryOpInstruction.Operator>Copyright © 2019. All rights reserved.