Package jnr.a64asm
Enum InstructionGroup
- java.lang.Object
-
- java.lang.Enum<InstructionGroup>
-
- jnr.a64asm.InstructionGroup
-
- All Implemented Interfaces:
Serializable
,Comparable<InstructionGroup>
public enum InstructionGroup extends Enum<InstructionGroup>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InstructionGroup
valueOf(String name)
Returns the enum constant of this type with the specified name.static InstructionGroup[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
addsub_carry
public static final InstructionGroup addsub_carry
-
addsub_ext
public static final InstructionGroup addsub_ext
-
addsub_imm
public static final InstructionGroup addsub_imm
-
addsub_shift
public static final InstructionGroup addsub_shift
-
bitfield
public static final InstructionGroup bitfield
-
branch_imm
public static final InstructionGroup branch_imm
-
branch_reg
public static final InstructionGroup branch_reg
-
compbranch
public static final InstructionGroup compbranch
-
condbranch
public static final InstructionGroup condbranch
-
condcmp_imm
public static final InstructionGroup condcmp_imm
-
condcmp_reg
public static final InstructionGroup condcmp_reg
-
condsel
public static final InstructionGroup condsel
-
dp_1src
public static final InstructionGroup dp_1src
-
dp_2src
public static final InstructionGroup dp_2src
-
dp_3src
public static final InstructionGroup dp_3src
-
exception
public static final InstructionGroup exception
-
extract
public static final InstructionGroup extract
-
ldst_imm9
public static final InstructionGroup ldst_imm9
-
ldst_pos
public static final InstructionGroup ldst_pos
-
ldst_imm9_2reg
public static final InstructionGroup ldst_imm9_2reg
-
ldst_pos_2reg
public static final InstructionGroup ldst_pos_2reg
-
ldst_regoff
public static final InstructionGroup ldst_regoff
-
ldst_unpriv
public static final InstructionGroup ldst_unpriv
-
ldst_unscaled
public static final InstructionGroup ldst_unscaled
-
ldstexcl
public static final InstructionGroup ldstexcl
-
ldstexcl_op3
public static final InstructionGroup ldstexcl_op3
-
ldstexcl_op4
public static final InstructionGroup ldstexcl_op4
-
ldstnapair_offs
public static final InstructionGroup ldstnapair_offs
-
ldstpair_off
public static final InstructionGroup ldstpair_off
-
ldstpair_indexed
public static final InstructionGroup ldstpair_indexed
-
loadlit
public static final InstructionGroup loadlit
-
log_imm
public static final InstructionGroup log_imm
-
log_shift
public static final InstructionGroup log_shift
-
movewide
public static final InstructionGroup movewide
-
pcreladdr
public static final InstructionGroup pcreladdr
-
ic_system
public static final InstructionGroup ic_system
-
testbranch
public static final InstructionGroup testbranch
-
-
Method Detail
-
values
public static InstructionGroup[] 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 (InstructionGroup c : InstructionGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstructionGroup valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-