Package com.android.dx.dex.code
Enum Class LocalList.Disposition
- All Implemented Interfaces:
Serializable
,Comparable<LocalList.Disposition>
,Constable
- Enclosing class:
LocalList
Disposition of a local entry.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionlocal ended because the next local clobbered this one (because this one is a category-2)local ended because the previous local clobbered this one (because it is category-2)local ended because it was moved to a different registerlocal ended because it was directly replacedlocal ended without being replacedlocal started (introduced) -
Method Summary
Modifier and TypeMethodDescriptionstatic LocalList.Disposition
Returns the enum constant of this class with the specified name.static LocalList.Disposition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
START
local started (introduced) -
END_SIMPLY
local ended without being replaced -
END_REPLACED
local ended because it was directly replaced -
END_MOVED
local ended because it was moved to a different register -
END_CLOBBERED_BY_PREV
local ended because the previous local clobbered this one (because it is category-2) -
END_CLOBBERED_BY_NEXT
local ended because the next local clobbered this one (because this one is a category-2)
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-