public enum JobProperties extends Enum<JobProperties>
| Enum Constant and Description |
|---|
jobEnd |
jobId |
jobName |
jobQualifier |
jobStart |
jobStatus |
vmsUsed |
wallDuration |
| Modifier and Type | Method and Description |
|---|---|
static JobProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobProperties jobId
public static final JobProperties jobQualifier
public static final JobProperties jobName
public static final JobProperties jobStart
public static final JobProperties jobEnd
public static final JobProperties jobStatus
public static final JobProperties vmsUsed
public static final JobProperties wallDuration
public static JobProperties[] values()
for (JobProperties c : JobProperties.values()) System.out.println(c);
public static JobProperties valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017. All Rights Reserved.