PTP
Release 5.0

org.eclipse.ptp.core
Enum AbstractJobSubmission.JobSubStatus

java.lang.Object
  extended by java.lang.Enum<AbstractJobSubmission.JobSubStatus>
      extended by org.eclipse.ptp.core.AbstractJobSubmission.JobSubStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AbstractJobSubmission.JobSubStatus>
Enclosing class:
AbstractJobSubmission

public static enum AbstractJobSubmission.JobSubStatus
extends java.lang.Enum<AbstractJobSubmission.JobSubStatus>

Status of the job submission (NOT the job itself)


Enum Constant Summary
CANCELLED
           
ERROR
           
SUBMITTED
           
UNSUBMITTED
           
 
Method Summary
static AbstractJobSubmission.JobSubStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AbstractJobSubmission.JobSubStatus[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNSUBMITTED

public static final AbstractJobSubmission.JobSubStatus UNSUBMITTED
Since:
4.0

SUBMITTED

public static final AbstractJobSubmission.JobSubStatus SUBMITTED

CANCELLED

public static final AbstractJobSubmission.JobSubStatus CANCELLED
Since:
5.0

ERROR

public static final AbstractJobSubmission.JobSubStatus ERROR
Method Detail

values

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

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

valueOf

public static AbstractJobSubmission.JobSubStatus 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

PTP
Release 5.0

Copyright (c) 2011 IBM Corporation and others. All Rights Reserved.