|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<ProgressMonitor.Status>
net.charlesames.utility.common.ProgressMonitor.Status
public static enum ProgressMonitor.Status
ProgressMonitor status conditions.
| Enum Constant Summary | |
|---|---|
CANCELED
A running process has detected that ProgressMonitor.isPermitted() return false, has shut down its activity, and has acknowledged this by calling ProgressMonitor.cancel(). |
|
COMPLETE
Process has completed successfully. |
|
ERROR
Process has completed with an error. |
|
INITIALIZING
Process is initializing. |
|
KILLED
End user has requested the process to shut down immediately. |
|
RUNNING
Process is running. |
|
| Method Summary | |
|---|---|
static ProgressMonitor.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ProgressMonitor.Status[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ProgressMonitor.Status INITIALIZING
public static final ProgressMonitor.Status RUNNING
public static final ProgressMonitor.Status COMPLETE
public static final ProgressMonitor.Status KILLED
public static final ProgressMonitor.Status CANCELED
public static final ProgressMonitor.Status ERROR
| Method Detail |
|---|
public static ProgressMonitor.Status[] values()
for (ProgressMonitor.Status c : ProgressMonitor.Status.values()) System.out.println(c);
public static ProgressMonitor.Status 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 name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||