Enum Class DexPoolType

java.lang.Object
java.lang.Enum<DexPoolType>
com.pnfsoftware.jeb.core.units.code.android.dex.DexPoolType
All Implemented Interfaces:
Serializable, Comparable<DexPoolType>, Constable

public enum DexPoolType extends Enum<DexPoolType>
An enumeration of Dex pool types.
  • Enum Constant Details

    • STRING

      public static final DexPoolType STRING
      DEX pool type string.
    • TYPE

      public static final DexPoolType TYPE
      DEX pool type type.
    • PROTOTYPE

      public static final DexPoolType PROTOTYPE
      DEX pool type prototype.
    • FIELD

      public static final DexPoolType FIELD
      DEX pool type field.
    • METHOD

      public static final DexPoolType METHOD
      DEX pool type method.
    • CLASS

      public static final DexPoolType CLASS
      DEX pool type class.
    • METHOD_HANDLE

      public static final DexPoolType METHOD_HANDLE
      DEX pool type method-handle.
    • CALL_SITE

      public static final DexPoolType CALL_SITE
      DEX pool type call-site.
  • Method Details

    • values

      public static DexPoolType[] 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

      public static DexPoolType valueOf(String name)
      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 name
      NullPointerException - if the argument is null