Enum BpmnType
- java.lang.Object
-
- java.lang.Enum<BpmnType>
-
- de.fiveminds.client.processModel.model.constants.BpmnType
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description java.lang.Stringvalue
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BpmnTypefromValue(java.lang.String value)java.lang.Stringvalue()static BpmnTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static BpmnType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
untypedTask
public static final BpmnType untypedTask
-
businessRuleTask
public static final BpmnType businessRuleTask
-
userTask
public static final BpmnType userTask
-
exclusiveGateway
public static final BpmnType exclusiveGateway
-
parallelGateway
public static final BpmnType parallelGateway
-
serviceTask
public static final BpmnType serviceTask
-
startEvent
public static final BpmnType startEvent
-
endEvent
public static final BpmnType endEvent
-
intermediateCatchEvent
public static final BpmnType intermediateCatchEvent
-
intermediateThrowEvent
public static final BpmnType intermediateThrowEvent
-
scriptTask
public static final BpmnType scriptTask
-
boundaryEvent
public static final BpmnType boundaryEvent
-
callActivity
public static final BpmnType callActivity
-
subProcess
public static final BpmnType subProcess
-
manualTask
public static final BpmnType manualTask
-
complexGateway
public static final BpmnType complexGateway
-
inclusiveGateway
public static final BpmnType inclusiveGateway
-
eventBasedGateway
public static final BpmnType eventBasedGateway
-
sendTask
public static final BpmnType sendTask
-
receiveTask
public static final BpmnType receiveTask
-
-
Method Detail
-
values
public static BpmnType[] 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 (BpmnType c : BpmnType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BpmnType 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
-
value
public java.lang.String value()
-
fromValue
public static BpmnType fromValue(java.lang.String value)
-
-