Class ImmutableInstruction32x
- java.lang.Object
-
- org.jf.dexlib2.immutable.instruction.ImmutableInstruction
-
- org.jf.dexlib2.immutable.instruction.ImmutableInstruction32x
-
- All Implemented Interfaces:
Instruction32x
,Instruction
,OneRegisterInstruction
,TwoRegisterInstruction
public class ImmutableInstruction32x extends ImmutableInstruction implements Instruction32x
-
-
Constructor Summary
Constructors Constructor Description ImmutableInstruction32x(Opcode opcode, int registerA, int registerB)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Format
getFormat()
int
getRegisterA()
int
getRegisterB()
static ImmutableInstruction32x
of(Instruction32x instruction)
-
Methods inherited from class org.jf.dexlib2.immutable.instruction.ImmutableInstruction
getCodeUnits, getOpcode, immutableListOf, of
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.jf.dexlib2.iface.instruction.Instruction
getCodeUnits, getOpcode
-
-
-
-
Field Detail
-
FORMAT
public static final Format FORMAT
-
registerA
protected final int registerA
-
registerB
protected final int registerB
-
-
Constructor Detail
-
ImmutableInstruction32x
public ImmutableInstruction32x(@Nonnull Opcode opcode, int registerA, int registerB)
-
-
Method Detail
-
of
public static ImmutableInstruction32x of(Instruction32x instruction)
-
getRegisterA
public int getRegisterA()
- Specified by:
getRegisterA
in interfaceOneRegisterInstruction
-
getRegisterB
public int getRegisterB()
- Specified by:
getRegisterB
in interfaceTwoRegisterInstruction
-
getFormat
public Format getFormat()
- Specified by:
getFormat
in classImmutableInstruction
-
-