g-Eclipse
Release 1.0.0

eu.geclipse.batch
Enum IBatchJobInfo.JobState

java.lang.Object
  extended by java.lang.Enum<IBatchJobInfo.JobState>
      extended by eu.geclipse.batch.IBatchJobInfo.JobState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IBatchJobInfo.JobState>
Enclosing interface:
IBatchJobInfo

public static enum IBatchJobInfo.JobState
extends java.lang.Enum<IBatchJobInfo.JobState>

This field determines the type of the state of this Queue.


Enum Constant Summary
C
          Job is completed after having run
E
          Job is exiting after having run.
H
          Job is held.
Q
          Job is queued, eligible to run or routed.
R
          Job is running.
S
          (Unicos only) job is suspend.
T
          job is being moved to new location.
W
          job is waiting for its execution time.
 
Method Summary
 java.lang.String toString()
           
static IBatchJobInfo.JobState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IBatchJobInfo.JobState[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

C

public static final IBatchJobInfo.JobState C
Job is completed after having run


E

public static final IBatchJobInfo.JobState E
Job is exiting after having run.


H

public static final IBatchJobInfo.JobState H
Job is held.


Q

public static final IBatchJobInfo.JobState Q
Job is queued, eligible to run or routed.


R

public static final IBatchJobInfo.JobState R
Job is running.


T

public static final IBatchJobInfo.JobState T
job is being moved to new location.


W

public static final IBatchJobInfo.JobState W
job is waiting for its execution time.


S

public static final IBatchJobInfo.JobState S
(Unicos only) job is suspend.

Method Detail

values

public static final IBatchJobInfo.JobState[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(IBatchJobInfo.JobState c : IBatchJobInfo.JobState.values())
        System.out.println(c);

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

valueOf

public static IBatchJobInfo.JobState 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

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<IBatchJobInfo.JobState>

g-Eclipse
Release 1.0.0