public enum LayoutFlags extends java.lang.Enum<LayoutFlags>
Enum Constant and Description |
---|
CLEAN |
DIRTY_BRANCH |
NEEDS_LAYOUT |
Modifier and Type | Method and Description |
---|---|
static LayoutFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LayoutFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LayoutFlags CLEAN
public static final LayoutFlags DIRTY_BRANCH
public static final LayoutFlags NEEDS_LAYOUT
public static LayoutFlags[] values()
for (LayoutFlags c : LayoutFlags.values()) System.out.println(c);
public static LayoutFlags 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 null