com.kenai.jnr.x86asm
Enum InstructionGroup

java.lang.Object
  extended by java.lang.Enum<InstructionGroup>
      extended by com.kenai.jnr.x86asm.InstructionGroup
All Implemented Interfaces:
Serializable, Comparable<InstructionGroup>

Deprecated.

@Deprecated
public enum InstructionGroup
extends Enum<InstructionGroup>


Enum Constant Summary
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.  
 
Method Summary
static InstructionGroup valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.