Enum Class LocalList.Disposition

java.lang.Object
java.lang.Enum<LocalList.Disposition>
com.android.dx.dex.code.LocalList.Disposition
All Implemented Interfaces:
Serializable, Comparable<LocalList.Disposition>, Constable
Enclosing class:
LocalList

public static enum LocalList.Disposition extends Enum<LocalList.Disposition>
Disposition of a local entry.
  • Enum Constant Details

    • START

      public static final LocalList.Disposition START
      local started (introduced)
    • END_SIMPLY

      public static final LocalList.Disposition END_SIMPLY
      local ended without being replaced
    • END_REPLACED

      public static final LocalList.Disposition END_REPLACED
      local ended because it was directly replaced
    • END_MOVED

      public static final LocalList.Disposition END_MOVED
      local ended because it was moved to a different register
    • END_CLOBBERED_BY_PREV

      public static final LocalList.Disposition END_CLOBBERED_BY_PREV
      local ended because the previous local clobbered this one (because it is category-2)
    • END_CLOBBERED_BY_NEXT

      public static final LocalList.Disposition END_CLOBBERED_BY_NEXT
      local ended because the next local clobbered this one (because this one is a category-2)
  • Method Details

    • values

      public static LocalList.Disposition[] 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 LocalList.Disposition 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