Package com.github.junrar.unpack.vm
Enum Class VMCommands
- All Implemented Interfaces:
Serializable,Comparable<VMCommands>,Constable
DOCUMENT ME
- Version:
- $LastChangedRevision$
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanequals(int vmCommand) static VMCommandsfindVMCommand(int vmCommand) intstatic VMCommandsReturns the enum constant of this class with the specified name.static VMCommands[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VM_MOV
-
VM_CMP
-
VM_ADD
-
VM_SUB
-
VM_JZ
-
VM_JNZ
-
VM_INC
-
VM_DEC
-
VM_JMP
-
VM_XOR
-
VM_AND
-
VM_OR
-
VM_TEST
-
VM_JS
-
VM_JNS
-
VM_JB
-
VM_JBE
-
VM_JA
-
VM_JAE
-
VM_PUSH
-
VM_POP
-
VM_CALL
-
VM_RET
-
VM_NOT
-
VM_SHL
-
VM_SHR
-
VM_SAR
-
VM_NEG
-
VM_PUSHA
-
VM_POPA
-
VM_PUSHF
-
VM_POPF
-
VM_MOVZX
-
VM_MOVSX
-
VM_XCHG
-
VM_MUL
-
VM_DIV
-
VM_ADC
-
VM_SBB
-
VM_PRINT
-
VM_MOVB
-
VM_MOVD
-
VM_CMPB
-
VM_CMPD
-
VM_ADDB
-
VM_ADDD
-
VM_SUBB
-
VM_SUBD
-
VM_INCB
-
VM_INCD
-
VM_DECB
-
VM_DECD
-
VM_NEGB
-
VM_NEGD
-
VM_STANDARD
-
-
Field Details
-
vmCommand
private final int vmCommand
-
-
Constructor Details
-
VMCommands
private VMCommands(int vmCommand)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getVMCommand
public int getVMCommand() -
equals
public boolean equals(int vmCommand) -
findVMCommand
-