Package 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
-
-
Enum Constant Summary
Enum Constants Enum Constant Description close
complete
create
disable
enable
exit
fault
manualStart
occur
parentResume
parentSuspend
reactivate
reenable
resume
start
suspend
terminate
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PlanItemTransition
valueOf(String name)
Returns the enum constant of this type with the specified name.static PlanItemTransition[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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
-
-
Method Detail
-
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 nameNullPointerException
- if the argument is null
-
-