gr.uoa.di.madgik.workflow.adaptor.utils.jdl
Enum ParsedJDLInfo.JobType

java.lang.Object
  extended by java.lang.Enum<ParsedJDLInfo.JobType>
      extended by gr.uoa.di.madgik.workflow.adaptor.utils.jdl.ParsedJDLInfo.JobType
All Implemented Interfaces:
Serializable, Comparable<ParsedJDLInfo.JobType>
Enclosing class:
ParsedJDLInfo

public static enum ParsedJDLInfo.JobType
extends Enum<ParsedJDLInfo.JobType>

The Recognized JobType.


Enum Constant Summary
Checkpointable
          Checkpointable job type.
Interactive
          Interactive job type.
MPICH
          MPICH job type.
Normal
          Normal job type.
Partitionable
          Partitionable job type.
 
Method Summary
static ParsedJDLInfo.JobType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ParsedJDLInfo.JobType[] 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

Normal

public static final ParsedJDLInfo.JobType Normal
Normal job type. This Job type is supported by the WorkflowJDLAdaptor


Interactive

public static final ParsedJDLInfo.JobType Interactive
Interactive job type. This Job type is not supported by the WorkflowJDLAdaptor


MPICH

public static final ParsedJDLInfo.JobType MPICH
MPICH job type. This Job type is not supported by the WorkflowJDLAdaptor


Checkpointable

public static final ParsedJDLInfo.JobType Checkpointable
Checkpointable job type. This Job type is not supported by the WorkflowJDLAdaptor


Partitionable

public static final ParsedJDLInfo.JobType Partitionable
Partitionable job type. This Job type is not supported by the WorkflowJDLAdaptor

Method Detail

values

public static ParsedJDLInfo.JobType[] 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 (ParsedJDLInfo.JobType c : ParsedJDLInfo.JobType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ParsedJDLInfo.JobType 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 © 2013. All Rights Reserved.