protected static enum AbstractProgressMonitor.State extends java.lang.Enum<AbstractProgressMonitor.State>
Enum Constant and Description |
---|
FINISHED |
IN_SUBTASK |
IN_TASK |
INIT |
Modifier and Type | Method and Description |
---|---|
static AbstractProgressMonitor.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractProgressMonitor.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractProgressMonitor.State INIT
public static final AbstractProgressMonitor.State IN_TASK
public static final AbstractProgressMonitor.State IN_SUBTASK
public static final AbstractProgressMonitor.State FINISHED
public static AbstractProgressMonitor.State[] values()
for (AbstractProgressMonitor.State c : AbstractProgressMonitor.State.values()) System.out.println(c);
public static AbstractProgressMonitor.State valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null