PackedSwitchPayloadDecodedInstructionpublic final class PackedSwitchPayloadDecodedInstruction extends DecodedInstruction A decoded Dalvik instruction which contains the payload for
a {@code packed-switch} instruction. |
Fields Summary |
---|
private final int | firstKeyfirst key value | private final int[] | targetsarray of target addresses. These are absolute, not relative,
addresses. |
Constructors Summary |
---|
public PackedSwitchPayloadDecodedInstruction(InstructionCodec format, int opcode, int firstKey, int[] targets)Constructs an instance.
super(format, opcode, 0, null, 0, 0L);
this.firstKey = firstKey;
this.targets = targets;
|
Methods Summary |
---|
public int | getFirstKey()
return firstKey;
| public int | getRegisterCount()
return 0;
| public int[] | getTargets()
return targets;
| public DecodedInstruction | withIndex(int newIndex)
throw new UnsupportedOperationException("no index in instruction");
|
|