Enum TaskKindType

  • All Implemented Interfaces:
    Serializable, Comparable<TaskKindType>

    public enum TaskKindType
    extends Enum<TaskKindType>

    Java class for TaskKindType.

    The following schema fragment specifies the expected content contained within this class.

     <simpleType name="TaskKindType">
       <restriction base="{http://www.w3.org/2001/XMLSchema}string">
         <enumeration value="standalone"/>
         <enumeration value="coordinator"/>
         <enumeration value="worker"/>
         <enumeration value="partitionedMaster"/>
       </restriction>
     </simpleType>
     
    • Enum Constant Detail

      • STANDALONE

        public static final TaskKindType STANDALONE
        The task is standalone: it executes all the work itself (single- or multi-threaded).
      • COORDINATOR

        public static final TaskKindType COORDINATOR
        The task is a coordinator task in a multi-node execution.
      • WORKER

        public static final TaskKindType WORKER
        The task is a worker task in a multi-node execution.
      • PARTITIONED_MASTER

        public static final TaskKindType PARTITIONED_MASTER
        The task is a master task that is partitioned into subtasks.
    • Method Detail

      • values

        public static TaskKindType[] 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 (TaskKindType c : TaskKindType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static TaskKindType 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
      • value

        public String value()