private static enum MoveProfiling.MoveType extends Enum<MoveProfiling.MoveType>
Enum Constant and Description |
---|
CONST2REG |
CONST2STACK |
REG2REG |
REG2STACK |
STACK2REG |
STACK2STACK |
Modifier and Type | Method and Description |
---|---|
static MoveProfiling.MoveType |
get(StandardOp.MoveOp move) |
String |
toString() |
static MoveProfiling.MoveType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MoveProfiling.MoveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoveProfiling.MoveType REG2REG
public static final MoveProfiling.MoveType STACK2REG
public static final MoveProfiling.MoveType CONST2REG
public static final MoveProfiling.MoveType REG2STACK
public static final MoveProfiling.MoveType CONST2STACK
public static final MoveProfiling.MoveType STACK2STACK
public static MoveProfiling.MoveType[] values()
for (MoveProfiling.MoveType c : MoveProfiling.MoveType.values()) System.out.println(c);
public static MoveProfiling.MoveType 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<MoveProfiling.MoveType>
public static MoveProfiling.MoveType get(StandardOp.MoveOp move)