org.glite.lb

Class EventRegJob.Jobtype

public static class EventRegJob.Jobtype extends Enum<EventRegJob.Jobtype>

Field Summary
static EventRegJob.JobtypeCOLLECTION
static EventRegJob.JobtypeCONDOR
static EventRegJob.JobtypeCREAM
static EventRegJob.JobtypeDAG
static EventRegJob.JobtypeFILE_TRANSFER
static EventRegJob.JobtypeFILE_TRANSFER_COLLECTION
static EventRegJob.JobtypePARTITIONABLE
static EventRegJob.JobtypePARTITIONED
static EventRegJob.JobtypePBS
static EventRegJob.JobtypeSIMPLE
static EventRegJob.JobtypeUNDEFINED
static List<EventRegJob.Jobtype>VALUES
An immutable list containing the values comprising this enum class in the order they're declared.
static EventRegJob.JobtypeVIRTUAL_MACHINE
Method Summary
List<EventRegJob.Jobtype>family()
Returns an immutable list containing the values comprising this enum class in the order they're declared.
static EventRegJob.JobtypevalueOf(String name)
Static factory to return the enum constant pertaining to the given string name.

Field Detail

COLLECTION

public static final EventRegJob.Jobtype COLLECTION

CONDOR

public static final EventRegJob.Jobtype CONDOR

CREAM

public static final EventRegJob.Jobtype CREAM

DAG

public static final EventRegJob.Jobtype DAG

FILE_TRANSFER

public static final EventRegJob.Jobtype FILE_TRANSFER

FILE_TRANSFER_COLLECTION

public static final EventRegJob.Jobtype FILE_TRANSFER_COLLECTION

PARTITIONABLE

public static final EventRegJob.Jobtype PARTITIONABLE

PARTITIONED

public static final EventRegJob.Jobtype PARTITIONED

PBS

public static final EventRegJob.Jobtype PBS

SIMPLE

public static final EventRegJob.Jobtype SIMPLE

UNDEFINED

public static final EventRegJob.Jobtype UNDEFINED

VALUES

public static final List<EventRegJob.Jobtype> VALUES
An immutable list containing the values comprising this enum class in the order they're declared. This field may be used to iterate over the constants as follows:
for(Jobtype c : Jobtype.VALUES)
    System.out.println(c);

VIRTUAL_MACHINE

public static final EventRegJob.Jobtype VIRTUAL_MACHINE

Method Detail

family

public final List<EventRegJob.Jobtype> family()
Returns an immutable list containing the values comprising this enum class in the order they're declared. This instance method simply returns VALUES. Few programmers should have any need to use this method. It is provided for use by sophisticated enum-based data structures to prevent the need for reflective access to VALUES.

Returns: an immutable list containing the values comprising this enum class, in the order they're declared.

valueOf

public static final EventRegJob.Jobtype valueOf(String name)
Static factory to return the enum constant pertaining to the given string name. The string must match exactly an identifier used to declare an enum constant in this type.

Throws: IllegalArgumentException if this enum class has no constant with the specified name.