|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<LocalList.Disposition>
com.android.dx.dex.code.LocalList.Disposition
public static enum LocalList.Disposition
Disposition of a local entry.
Enum Constant Summary | |
---|---|
END_CLOBBERED_BY_NEXT
local ended because the next local clobbered this one (because this one is a category-2) |
|
END_CLOBBERED_BY_PREV
local ended because the previous local clobbered this one (because it is category-2) |
|
END_MOVED
local ended because it was moved to a different register |
|
END_REPLACED
local ended because it was directly replaced |
|
END_SIMPLY
local ended without being replaced |
|
START
local started (introduced) |
Method Summary | |
---|---|
static LocalList.Disposition |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LocalList.Disposition[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final LocalList.Disposition START
public static final LocalList.Disposition END_SIMPLY
public static final LocalList.Disposition END_REPLACED
public static final LocalList.Disposition END_MOVED
public static final LocalList.Disposition END_CLOBBERED_BY_PREV
public static final LocalList.Disposition END_CLOBBERED_BY_NEXT
Method Detail |
---|
public static LocalList.Disposition[] values()
for (LocalList.Disposition c : LocalList.Disposition.values()) System.out.println(c);
public static LocalList.Disposition valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |