org.camunda.bpm.model.cmmn
Enum PlanItemTransition

java.lang.Object
  extended by java.lang.Enum<PlanItemTransition>
      extended by org.camunda.bpm.model.cmmn.PlanItemTransition
All Implemented Interfaces:
Serializable, Comparable<PlanItemTransition>

public enum PlanItemTransition
extends Enum<PlanItemTransition>

Author:
Roman Smirnov

Enum Constant Summary
close
           
complete
           
create
           
disable
           
enable
           
exit
           
fault
           
manualStart
           
occur
           
parentResume
           
parentSuspend
           
reactivate
           
reenable
           
resume
           
start
           
suspend
           
terminate
           
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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 name
NullPointerException - if the argument is null


Copyright © 2018 camunda services GmbH. All rights reserved.