public enum ProcessInstanceDetailsOptions extends Enum<ProcessInstanceDetailsOptions>
ProcessInstance.| Enum Constant and Description |
|---|
WITH_HIERARCHY_INFO
The process instance details will contain information of the parent process instance.
|
WITH_LINK_INFO
The process instance details will contain information about the linked process instances.
|
WITH_NOTES
The process instance details will contain note information.
|
| Modifier and Type | Method and Description |
|---|---|
static ProcessInstanceDetailsOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessInstanceDetailsOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessInstanceDetailsOptions WITH_HIERARCHY_INFO
public static final ProcessInstanceDetailsOptions WITH_NOTES
public static final ProcessInstanceDetailsOptions WITH_LINK_INFO
public static ProcessInstanceDetailsOptions[] values()
for (ProcessInstanceDetailsOptions c : ProcessInstanceDetailsOptions.values()) System.out.println(c);
public static ProcessInstanceDetailsOptions 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.