Package com.kenai.jnr.x86asm
Enum InstructionGroup
- java.lang.Object
-
- java.lang.Enum<InstructionGroup>
-
- com.kenai.jnr.x86asm.InstructionGroup
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InstructionGroup>
@Deprecated public enum InstructionGroup extends java.lang.Enum<InstructionGroup>
Deprecated.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description I_ALU
Deprecated.I_BSWAP
Deprecated.I_BT
Deprecated.I_CALL
Deprecated.I_CRC32
Deprecated.I_EMIT
Deprecated.I_ENTER
Deprecated.I_IMUL
Deprecated.I_INC_DEC
Deprecated.I_J
Deprecated.I_JMP
Deprecated.I_LEA
Deprecated.I_M
Deprecated.I_MMU_MOV
Deprecated.I_MMU_MOVD
Deprecated.I_MMU_MOVQ
Deprecated.I_MMU_PEXTR
Deprecated.I_MMU_PREFETCH
Deprecated.I_MMU_RM_3DNOW
Deprecated.I_MMU_RM_IMM8
Deprecated.I_MMU_RMI
Deprecated.I_MOV
Deprecated.I_MOV_PTR
Deprecated.I_MOVBE
Deprecated.I_MOVSX_MOVZX
Deprecated.I_MOVSXD
Deprecated.I_POP
Deprecated.I_PUSH
Deprecated.I_R_RM
Deprecated.I_RET
Deprecated.I_RM
Deprecated.I_RM_B
Deprecated.I_RM_R
Deprecated.I_ROT
Deprecated.I_SHLD_SHRD
Deprecated.I_TEST
Deprecated.I_X87_FPU
Deprecated.I_X87_FSTSW
Deprecated.I_X87_MEM
Deprecated.I_X87_MEM_STI
Deprecated.I_X87_STI
Deprecated.I_XCHG
Deprecated.
-
Constructor Summary
Constructors Modifier Constructor Description private
InstructionGroup()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static InstructionGroup
valueOf(java.lang.String name)
Deprecated.Returns the enum constant of this type with the specified name.static InstructionGroup[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
I_EMIT
public static final InstructionGroup I_EMIT
Deprecated.
-
I_ALU
public static final InstructionGroup I_ALU
Deprecated.
-
I_BSWAP
public static final InstructionGroup I_BSWAP
Deprecated.
-
I_BT
public static final InstructionGroup I_BT
Deprecated.
-
I_CALL
public static final InstructionGroup I_CALL
Deprecated.
-
I_CRC32
public static final InstructionGroup I_CRC32
Deprecated.
-
I_ENTER
public static final InstructionGroup I_ENTER
Deprecated.
-
I_IMUL
public static final InstructionGroup I_IMUL
Deprecated.
-
I_INC_DEC
public static final InstructionGroup I_INC_DEC
Deprecated.
-
I_J
public static final InstructionGroup I_J
Deprecated.
-
I_JMP
public static final InstructionGroup I_JMP
Deprecated.
-
I_LEA
public static final InstructionGroup I_LEA
Deprecated.
-
I_M
public static final InstructionGroup I_M
Deprecated.
-
I_MOV
public static final InstructionGroup I_MOV
Deprecated.
-
I_MOV_PTR
public static final InstructionGroup I_MOV_PTR
Deprecated.
-
I_MOVSX_MOVZX
public static final InstructionGroup I_MOVSX_MOVZX
Deprecated.
-
I_MOVSXD
public static final InstructionGroup I_MOVSXD
Deprecated.
-
I_PUSH
public static final InstructionGroup I_PUSH
Deprecated.
-
I_POP
public static final InstructionGroup I_POP
Deprecated.
-
I_R_RM
public static final InstructionGroup I_R_RM
Deprecated.
-
I_RM_B
public static final InstructionGroup I_RM_B
Deprecated.
-
I_RM
public static final InstructionGroup I_RM
Deprecated.
-
I_RM_R
public static final InstructionGroup I_RM_R
Deprecated.
-
I_RET
public static final InstructionGroup I_RET
Deprecated.
-
I_ROT
public static final InstructionGroup I_ROT
Deprecated.
-
I_SHLD_SHRD
public static final InstructionGroup I_SHLD_SHRD
Deprecated.
-
I_TEST
public static final InstructionGroup I_TEST
Deprecated.
-
I_XCHG
public static final InstructionGroup I_XCHG
Deprecated.
-
I_X87_FPU
public static final InstructionGroup I_X87_FPU
Deprecated.
-
I_X87_STI
public static final InstructionGroup I_X87_STI
Deprecated.
-
I_X87_MEM_STI
public static final InstructionGroup I_X87_MEM_STI
Deprecated.
-
I_X87_MEM
public static final InstructionGroup I_X87_MEM
Deprecated.
-
I_X87_FSTSW
public static final InstructionGroup I_X87_FSTSW
Deprecated.
-
I_MOVBE
public static final InstructionGroup I_MOVBE
Deprecated.
-
I_MMU_MOV
public static final InstructionGroup I_MMU_MOV
Deprecated.
-
I_MMU_MOVD
public static final InstructionGroup I_MMU_MOVD
Deprecated.
-
I_MMU_MOVQ
public static final InstructionGroup I_MMU_MOVQ
Deprecated.
-
I_MMU_PEXTR
public static final InstructionGroup I_MMU_PEXTR
Deprecated.
-
I_MMU_PREFETCH
public static final InstructionGroup I_MMU_PREFETCH
Deprecated.
-
I_MMU_RMI
public static final InstructionGroup I_MMU_RMI
Deprecated.
-
I_MMU_RM_IMM8
public static final InstructionGroup I_MMU_RM_IMM8
Deprecated.
-
I_MMU_RM_3DNOW
public static final InstructionGroup I_MMU_RM_3DNOW
Deprecated.
-
-
Method Detail
-
values
public static InstructionGroup[] values()
Deprecated.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(java.lang.String name)
Deprecated.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
-
-