public enum JobInterruptionStatus extends Enum<JobInterruptionStatus>
| Enum Constant and Description |
|---|
KILL
The job process was stopped in the quickest possible manner manually (by
a user or administrator).
|
OUT_OF_MEMORY
The job was stopped because the job process reached the maximum allowed
memory usage, as defined in the subscription.
|
STOP
The job was interrupted using a manual call (by a user or administrator).
|
TIMEOUT
The job processing was stopped because the timeout limit was reached.
|
| Modifier and Type | Method and Description |
|---|---|
static JobInterruptionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobInterruptionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobInterruptionStatus STOP
public static final JobInterruptionStatus KILL
public static final JobInterruptionStatus TIMEOUT
public static final JobInterruptionStatus OUT_OF_MEMORY
public static JobInterruptionStatus[] values()
for (JobInterruptionStatus c : JobInterruptionStatus.values()) System.out.println(c);
public static JobInterruptionStatus 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 © 2015–2017 IBM Corporation. Licensed under the Apache License, Version 2.0.