protected static enum NGNode.RenderRootResult extends java.lang.Enum<NGNode.RenderRootResult>
Enum Constant and Description |
---|
HAS_RENDER_ROOT
A Node returns HAS_RENDER_ROOT when its opaque region completely
covers the clip.
|
HAS_RENDER_ROOT_AND_IS_CLEAN
A Node returns HAS_RENDER_ROOT_AND_IS_CLEAN when its opaque region
completely covers the clip and the Node is, itself, clean.
|
NO_RENDER_ROOT
A Node returns NO_RENDER_ROOT when it is not a render root because
it does not have an opaqueRegion which completely covers the area
of the clip.
|
Modifier and Type | Method and Description |
---|---|
static NGNode.RenderRootResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NGNode.RenderRootResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NGNode.RenderRootResult NO_RENDER_ROOT
public static final NGNode.RenderRootResult HAS_RENDER_ROOT
public static final NGNode.RenderRootResult HAS_RENDER_ROOT_AND_IS_CLEAN
public static NGNode.RenderRootResult[] values()
for (NGNode.RenderRootResult c : NGNode.RenderRootResult.values()) System.out.println(c);
public static NGNode.RenderRootResult 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