public static enum IWorkItemState.State extends Enum<IWorkItemState.State>
| Enum Constant and Description |
|---|
ended |
error |
lost |
operating |
preempt |
queued |
retry |
start |
unknown |
| Modifier and Type | Method and Description |
|---|---|
static IWorkItemState.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IWorkItemState.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IWorkItemState.State start
public static final IWorkItemState.State queued
public static final IWorkItemState.State operating
public static final IWorkItemState.State ended
public static final IWorkItemState.State error
public static final IWorkItemState.State retry
public static final IWorkItemState.State preempt
public static final IWorkItemState.State lost
public static final IWorkItemState.State unknown
public static IWorkItemState.State[] values()
for (IWorkItemState.State c : IWorkItemState.State.values()) System.out.println(c);
public static IWorkItemState.State 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 © 2012–2015 The Apache Software Foundation. All rights reserved.