protected static enum DockComponentRootHandler.TraverseResult extends Enum<DockComponentRootHandler.TraverseResult>
Component tree| Enum 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(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
Componentpublic static DockComponentRootHandler.TraverseResult[] values()
for (DockComponentRootHandler.TraverseResult c : DockComponentRootHandler.TraverseResult.values()) System.out.println(c);
public static DockComponentRootHandler.TraverseResult 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 © 2017 Docking Frames. All rights reserved.