Enum Class BindOpcode
- All Implemented Interfaces:
Serializable,Comparable<BindOpcode>,Constable
Bind opcodes
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic BindOpcodeforOpcode(int opcode) Gets theBindOpcodethat corresponds to the given opcode valueintReturns the opcode value.static DataTypeReturns a new data type from this enum.static BindOpcodeReturns the enum constant of this class with the specified name.static BindOpcode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BIND_OPCODE_DONE
-
BIND_OPCODE_SET_DYLIB_ORDINAL_IMM
-
BIND_OPCODE_SET_DYLIB_ORDINAL_ULEB
-
BIND_OPCODE_SET_DYLIB_SPECIAL_IMM
-
BIND_OPCODE_SET_SYMBOL_TRAILING_FLAGS_IMM
-
BIND_OPCODE_SET_TYPE_IMM
-
BIND_OPCODE_SET_ADDEND_SLEB
-
BIND_OPCODE_SET_SEGMENT_AND_OFFSET_ULEB
-
BIND_OPCODE_ADD_ADDR_ULEB
-
BIND_OPCODE_DO_BIND
-
BIND_OPCODE_DO_BIND_ADD_ADDR_ULEB
-
BIND_OPCODE_DO_BIND_ADD_ADDR_IMM_SCALED
-
BIND_OPCODE_DO_BIND_ULEB_TIMES_SKIPPING_ULEB
-
BIND_OPCODE_THREADED
-
-
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
-
getOpcode
public int getOpcode()Returns the opcode value.- Returns:
- the opcode value
-
toDataType
Returns a new data type from this enum.- Returns:
- a new data type from this enum
-
forOpcode
Gets theBindOpcodethat corresponds to the given opcode value- Parameters:
opcode- The opcode value- Returns:
- The
BindOpcodethat corresponds to the given opcode value, or null if it does not exist
-