public enum OutgoingNodesHandlingStrategy extends Enum<OutgoingNodesHandlingStrategy>
Enum Constant and Description |
---|
ADD_FIRST_OUTGOING_STATE
Compute the given hierarchical nodes and the immediate neighborhood
|
CONTAIN_TO_SELECTION
Compute only the given hierarchical nodes
|
Modifier and Type | Method and Description |
---|---|
static OutgoingNodesHandlingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutgoingNodesHandlingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutgoingNodesHandlingStrategy CONTAIN_TO_SELECTION
public static final OutgoingNodesHandlingStrategy ADD_FIRST_OUTGOING_STATE
public static OutgoingNodesHandlingStrategy[] values()
for (OutgoingNodesHandlingStrategy c : OutgoingNodesHandlingStrategy.values()) System.out.println(c);
public static OutgoingNodesHandlingStrategy 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 © 2005–2020. All rights reserved.