public static enum LocalList.Disposition extends java.lang.Enum<LocalList.Disposition>
| Enum Constant and Description |
|---|
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)
|
| Modifier and Type | Method and Description |
|---|---|
static LocalList.Disposition |
valueOf(java.lang.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.
|
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
public static LocalList.Disposition[] values()
for (LocalList.Disposition c : LocalList.Disposition.values()) System.out.println(c);
public static LocalList.Disposition valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2020. All Rights Reserved.