org.eclipse.ptp.core
Enum AbstractJobSubmission.JobSubStatus
java.lang.Object
java.lang.Enum<AbstractJobSubmission.JobSubStatus>
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)
| 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 |
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
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
Copyright (c) 2011 IBM Corporation and others. All Rights Reserved.