org.glite.lb

Class EventConnectJob.Jobtype

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

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

Field Detail

COLLECTION

public static final EventConnectJob.Jobtype COLLECTION

CONDOR

public static final EventConnectJob.Jobtype CONDOR

CREAM

public static final EventConnectJob.Jobtype CREAM

DAG

public static final EventConnectJob.Jobtype DAG

FILE_TRANSFER

public static final EventConnectJob.Jobtype FILE_TRANSFER

FILE_TRANSFER_COLLECTION

public static final EventConnectJob.Jobtype FILE_TRANSFER_COLLECTION

PARTITIONABLE

public static final EventConnectJob.Jobtype PARTITIONABLE

PARTITIONED

public static final EventConnectJob.Jobtype PARTITIONED

PBS

public static final EventConnectJob.Jobtype PBS

SIMPLE

public static final EventConnectJob.Jobtype SIMPLE

UNDEFINED

public static final EventConnectJob.Jobtype UNDEFINED

VALUES

public static final List<EventConnectJob.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 EventConnectJob.Jobtype VIRTUAL_MACHINE

Method Detail

family

public final List<EventConnectJob.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 EventConnectJob.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.