Interface PackedSwitchPayload
-
- All Superinterfaces:
Instruction,PayloadInstruction,SwitchPayload
- All Known Implementing Classes:
BuilderPackedSwitchPayload,DexBackedPackedSwitchPayload,ImmutablePackedSwitchPayload
public interface PackedSwitchPayload extends SwitchPayload
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<? extends SwitchElement>getSwitchElements()-
Methods inherited from interface org.jf.dexlib2.iface.instruction.Instruction
getCodeUnits, getOpcode
-
-
-
-
Method Detail
-
getSwitchElements
@Nonnull java.util.List<? extends SwitchElement> getSwitchElements()
- Specified by:
getSwitchElementsin interfaceSwitchPayload- Returns:
- A list of the switch elements associated with this switch payload instruction. The returned list must have switch elements with keys that are ordered and sequential.
-
-