Enum OpcodeSWEET16
- java.lang.Object
-
- java.lang.Enum<OpcodeSWEET16>
-
- io.github.applecommander.disassembler.api.sweet16.OpcodeSWEET16
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OpcodeSWEET16>
public enum OpcodeSWEET16 extends java.lang.Enum<OpcodeSWEET16>
-
-
Field Summary
Fields Modifier and Type Field Description static OpcodeSWEET16[]
NON_REGISTER_OPS
static OpcodeSWEET16[]
REGISTER_OPS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMnemonic()
static OpcodeSWEET16
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OpcodeSWEET16[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD
public static final OpcodeSWEET16 ADD
-
BC
public static final OpcodeSWEET16 BC
-
BK
public static final OpcodeSWEET16 BK
-
BM
public static final OpcodeSWEET16 BM
-
BM1
public static final OpcodeSWEET16 BM1
-
BNC
public static final OpcodeSWEET16 BNC
-
BNM1
public static final OpcodeSWEET16 BNM1
-
BNZ
public static final OpcodeSWEET16 BNZ
-
BP
public static final OpcodeSWEET16 BP
-
BR
public static final OpcodeSWEET16 BR
-
BS
public static final OpcodeSWEET16 BS
-
BZ
public static final OpcodeSWEET16 BZ
-
CPR
public static final OpcodeSWEET16 CPR
-
DCR
public static final OpcodeSWEET16 DCR
-
INR
public static final OpcodeSWEET16 INR
-
LD
public static final OpcodeSWEET16 LD
-
LDD
public static final OpcodeSWEET16 LDD
-
POP
public static final OpcodeSWEET16 POP
-
POPD
public static final OpcodeSWEET16 POPD
-
RS
public static final OpcodeSWEET16 RS
-
RTN
public static final OpcodeSWEET16 RTN
-
SET
public static final OpcodeSWEET16 SET
-
ST
public static final OpcodeSWEET16 ST
-
STD
public static final OpcodeSWEET16 STD
-
STP
public static final OpcodeSWEET16 STP
-
SUB
public static final OpcodeSWEET16 SUB
-
ZZZ
public static final OpcodeSWEET16 ZZZ
-
-
Field Detail
-
REGISTER_OPS
public static final OpcodeSWEET16[] REGISTER_OPS
-
NON_REGISTER_OPS
public static final OpcodeSWEET16[] NON_REGISTER_OPS
-
-
Method Detail
-
values
public static OpcodeSWEET16[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OpcodeSWEET16 c : OpcodeSWEET16.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpcodeSWEET16 valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getMnemonic
public java.lang.String getMnemonic()
-
-