public static enum NGNode.DirtyFlag extends Enum<NGNode.DirtyFlag>
Enum Constant and Description |
---|
CLEAN |
DIRTY |
DIRTY_BY_TRANSLATION |
Modifier and Type | Method and Description |
---|---|
static NGNode.DirtyFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NGNode.DirtyFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NGNode.DirtyFlag CLEAN
public static final NGNode.DirtyFlag DIRTY_BY_TRANSLATION
public static final NGNode.DirtyFlag DIRTY
public static NGNode.DirtyFlag[] values()
for (NGNode.DirtyFlag c : NGNode.DirtyFlag.values()) System.out.println(c);
public static NGNode.DirtyFlag valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.