public static enum CancelResults.InterruptedState extends Enum<CancelResults.InterruptedState>
| Enum Constant and Description |
|---|
FINISHED
The operation job has already finished.
|
QUEUED
The operation job was queued but not yet handed off to the plugin to be invoked.
|
RUNNING
The operation job was running at the time it was canceled.
|
UNKNOWN
The operation invocation's job ID is not known and therefore nothing
can be canceled.
|
| Modifier and Type | Method and Description |
|---|---|
static CancelResults.InterruptedState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CancelResults.InterruptedState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CancelResults.InterruptedState FINISHED
public static final CancelResults.InterruptedState RUNNING
public static final CancelResults.InterruptedState QUEUED
public static final CancelResults.InterruptedState UNKNOWN
public static CancelResults.InterruptedState[] values()
for (CancelResults.InterruptedState c : CancelResults.InterruptedState.values()) System.out.println(c);
public static CancelResults.InterruptedState 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 © 2008-2013 Red Hat, Inc.. All Rights Reserved.