public enum ScanDirection extends Enum<ScanDirection>
FORWARD,
BACKWARD or BOTH| Enum Constant and Description |
|---|
BACKWARD
To retrieve backward transition targets to repeat a previous executed activity.
|
BOTH
To retrieve both transition targets: forward and backward.
|
FORWARD
To retrieve possible target activities for forward transitions to continue the
process but skip current activity.
|
| Modifier and Type | Method and Description |
|---|---|
static ScanDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanDirection FORWARD
public static final ScanDirection BACKWARD
public static final ScanDirection BOTH
public static ScanDirection[] values()
for (ScanDirection c : ScanDirection.values()) System.out.println(c);
public static ScanDirection 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 © 2016 Eclipse Stardust. All Rights Reserved.