public static enum ProgressHandle.Status extends Enum<ProgressHandle.Status>
Enum Constant and Description |
---|
BOUNDS_CHANGED |
DETERMINATE_STATUS_CHANGED |
PROGRESS_CHANGED |
STARTED |
STOPPED |
TASK_CHANGED |
Modifier and Type | Method and Description |
---|---|
static ProgressHandle.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgressHandle.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressHandle.Status STARTED
public static final ProgressHandle.Status STOPPED
public static final ProgressHandle.Status TASK_CHANGED
public static final ProgressHandle.Status DETERMINATE_STATUS_CHANGED
public static final ProgressHandle.Status PROGRESS_CHANGED
public static final ProgressHandle.Status BOUNDS_CHANGED
public static ProgressHandle.Status[] values()
for (ProgressHandle.Status c : ProgressHandle.Status.values()) System.out.println(c);
public static ProgressHandle.Status 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. All rights reserved.