Class ImmutableUnknownInstruction
- java.lang.Object
-
- org.jf.dexlib2.immutable.instruction.ImmutableInstruction
-
- org.jf.dexlib2.immutable.instruction.ImmutableUnknownInstruction
-
- All Implemented Interfaces:
Instruction10x
,UnknownInstruction
,Instruction
public class ImmutableUnknownInstruction extends ImmutableInstruction implements UnknownInstruction
-
-
Field Summary
Fields Modifier and Type Field Description static Format
FORMAT
protected int
originalOpcode
-
Fields inherited from class org.jf.dexlib2.immutable.instruction.ImmutableInstruction
opcode
-
-
Constructor Summary
Constructors Constructor Description ImmutableUnknownInstruction(int originalOpcode)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Format
getFormat()
int
getOriginalOpcode()
static ImmutableUnknownInstruction
of(UnknownInstruction 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
-
originalOpcode
protected final int originalOpcode
-
-
Method Detail
-
of
public static ImmutableUnknownInstruction of(UnknownInstruction instruction)
-
getFormat
public Format getFormat()
- Specified by:
getFormat
in classImmutableInstruction
-
getOriginalOpcode
public int getOriginalOpcode()
- Specified by:
getOriginalOpcode
in interfaceUnknownInstruction
-
-