Enum BpmnType

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<BpmnType>

    public enum BpmnType
    extends java.lang.Enum<BpmnType>
    • 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
    • Field Detail

      • value

        public final java.lang.String value
    • 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 name
        java.lang.NullPointerException - if the argument is null
      • value

        public java.lang.String value()
      • fromValue

        public static BpmnType fromValue​(java.lang.String value)