public static enum AbstractGroupTreeAction.GroupTreeTraversal extends java.lang.Enum<AbstractGroupTreeAction.GroupTreeTraversal>
GroupTreeModel can be specified.
Thus, the order of the single actions, implemented within an extended AbstractGroupTreeAction, can be controlled.| Enum Constant and Description |
|---|
BySequentialNetworkCalculation |
SumUpSearch |
TopDownBreadthFirstSearch |
TopDownDepthFirstSearch |
| Modifier and Type | Method and Description |
|---|---|
static AbstractGroupTreeAction.GroupTreeTraversal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractGroupTreeAction.GroupTreeTraversal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractGroupTreeAction.GroupTreeTraversal SumUpSearch
public static final AbstractGroupTreeAction.GroupTreeTraversal TopDownBreadthFirstSearch
public static final AbstractGroupTreeAction.GroupTreeTraversal TopDownDepthFirstSearch
public static final AbstractGroupTreeAction.GroupTreeTraversal BySequentialNetworkCalculation
public static AbstractGroupTreeAction.GroupTreeTraversal[] values()
for (AbstractGroupTreeAction.GroupTreeTraversal c : AbstractGroupTreeAction.GroupTreeTraversal.values()) System.out.println(c);
public static AbstractGroupTreeAction.GroupTreeTraversal 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