Enum SFlowNodeType
- java.lang.Object
-
- java.lang.Enum<SFlowNodeType>
-
- org.bonitasoft.engine.core.process.definition.model.SFlowNodeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SFlowNodeType>
public enum SFlowNodeType extends java.lang.Enum<SFlowNodeType>
- Author:
- Zhang Bole, Baptitse Mesta, Elias Ricken de Medeiros, Matthieu Chaffotte, Celine Souchet
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTOMATIC_TASKBOUNDARY_EVENTCALL_ACTIVITYEND_EVENTGATEWAYINTERMEDIATE_CATCH_EVENTINTERMEDIATE_THROW_EVENTLOOP_ACTIVITYMANUAL_TASKMULTI_INSTANCE_ACTIVITYRECEIVE_TASKSEND_TASKSTART_EVENTSUB_PROCESSUSER_TASK
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()static SFlowNodeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SFlowNodeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AUTOMATIC_TASK
public static final SFlowNodeType AUTOMATIC_TASK
-
USER_TASK
public static final SFlowNodeType USER_TASK
-
MANUAL_TASK
public static final SFlowNodeType MANUAL_TASK
-
RECEIVE_TASK
public static final SFlowNodeType RECEIVE_TASK
-
SEND_TASK
public static final SFlowNodeType SEND_TASK
-
GATEWAY
public static final SFlowNodeType GATEWAY
-
START_EVENT
public static final SFlowNodeType START_EVENT
-
INTERMEDIATE_CATCH_EVENT
public static final SFlowNodeType INTERMEDIATE_CATCH_EVENT
-
BOUNDARY_EVENT
public static final SFlowNodeType BOUNDARY_EVENT
-
INTERMEDIATE_THROW_EVENT
public static final SFlowNodeType INTERMEDIATE_THROW_EVENT
-
END_EVENT
public static final SFlowNodeType END_EVENT
-
LOOP_ACTIVITY
public static final SFlowNodeType LOOP_ACTIVITY
-
MULTI_INSTANCE_ACTIVITY
public static final SFlowNodeType MULTI_INSTANCE_ACTIVITY
-
CALL_ACTIVITY
public static final SFlowNodeType CALL_ACTIVITY
-
SUB_PROCESS
public static final SFlowNodeType SUB_PROCESS
-
-
Method Detail
-
values
public static SFlowNodeType[] 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 (SFlowNodeType c : SFlowNodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SFlowNodeType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
-