public enum JobStatus extends Enum<JobStatus>
ALL
works
as a wildcard value.Enum Constant and Description |
---|
ACTIVE
Status of currently active (running) jobs.
|
ALL
Wildcard value for any of the following values.
|
INPUT
Status of input (requested) jobs, that were not started, yet.
|
OUTPUT
Status of held (finished) jobs.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Value to be used for JES communication
|
static JobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatus ALL
public static final JobStatus INPUT
public static final JobStatus ACTIVE
public static final JobStatus OUTPUT
public static JobStatus[] values()
for (JobStatus c : JobStatus.values()) System.out.println(c);
public static JobStatus 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 nullpublic String getValue()
Copyright © 2025. All rights reserved.