org.camunda.bpm.model.cmmn
Enum PlanItemTransition
java.lang.Object
java.lang.Enum<PlanItemTransition>
org.camunda.bpm.model.cmmn.PlanItemTransition
- All Implemented Interfaces:
- Serializable, Comparable<PlanItemTransition>
public enum PlanItemTransition
- extends Enum<PlanItemTransition>
- Author:
- Roman Smirnov
close
public static final PlanItemTransition close
complete
public static final PlanItemTransition complete
create
public static final PlanItemTransition create
disable
public static final PlanItemTransition disable
enable
public static final PlanItemTransition enable
exit
public static final PlanItemTransition exit
fault
public static final PlanItemTransition fault
manualStart
public static final PlanItemTransition manualStart
occur
public static final PlanItemTransition occur
parentResume
public static final PlanItemTransition parentResume
parentSuspend
public static final PlanItemTransition parentSuspend
reactivate
public static final PlanItemTransition reactivate
reenable
public static final PlanItemTransition reenable
resume
public static final PlanItemTransition resume
start
public static final PlanItemTransition start
suspend
public static final PlanItemTransition suspend
terminate
public static final PlanItemTransition terminate
values
public static PlanItemTransition[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (PlanItemTransition c : PlanItemTransition.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PlanItemTransition valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2014 camunda services GmbH. All Rights Reserved.