public enum CssFlags extends Enum<CssFlags>
Enum Constant and Description |
---|
CLEAN
Indicates that the node is clean from here on down and does not
require any work on the next CSS pass
|
DIRTY_BRANCH
DIRTY_BRANCH means that this node is CLEAN but one of its children,
or grandchildren, etc is UPDATE or REAPPLY so we need to step into this branch.
|
REAPPLY
Indicates that we must reapply all the styles from this point downwards
in the tree, including figuring out which styles apply to each Node.
|
UPDATE
Indicates that we must update properties for this node and all child
nodes.
|
Modifier and Type | Method and Description |
---|---|
static CssFlags |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CssFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CssFlags CLEAN
public static final CssFlags DIRTY_BRANCH
public static final CssFlags UPDATE
public static final CssFlags REAPPLY
public static CssFlags[] values()
for (CssFlags c : CssFlags.values()) System.out.println(c);
public static CssFlags 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.