protected static enum DockComponentRootHandler.TraverseResult extends java.lang.Enum<DockComponentRootHandler.TraverseResult>
Component
treeEnum Constant and Description |
---|
EXCLUDE
do not traverse a
Component |
EXCLUDE_CHILDREN
traverse a
Component , but do not visit the children |
INCLUDE_CHILDREN
traverse a
Component and its children |
Modifier and Type | Method and Description |
---|---|
static DockComponentRootHandler.TraverseResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DockComponentRootHandler.TraverseResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DockComponentRootHandler.TraverseResult INCLUDE_CHILDREN
Component
and its childrenpublic static final DockComponentRootHandler.TraverseResult EXCLUDE_CHILDREN
Component
, but do not visit the childrenpublic static final DockComponentRootHandler.TraverseResult EXCLUDE
Component
public static DockComponentRootHandler.TraverseResult[] values()
for (DockComponentRootHandler.TraverseResult c : DockComponentRootHandler.TraverseResult.values()) System.out.println(c);
public static DockComponentRootHandler.TraverseResult 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