public enum LinkDirection extends Enum<LinkDirection>
| Enum Constant and Description |
|---|
FROM
finds process instances that are linked from the specified one.
|
TO
finds process instances that are linked to the specified one.
|
TO_FROM
finds process instances that either are linked to or linked from the specified one.
|
| Modifier and Type | Method and Description |
|---|---|
static LinkDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LinkDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LinkDirection TO
public static final LinkDirection FROM
public static final LinkDirection TO_FROM
public static LinkDirection[] values()
for (LinkDirection c : LinkDirection.values()) System.out.println(c);
public static LinkDirection 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.