public static enum Progress.Status extends Enum<Progress.Status>
| Enum Constant and Description |
|---|
CANCELLED |
FINISHED |
IN_PROGRESS |
NONE |
START_PROGRESS |
| Modifier and Type | Method and Description |
|---|---|
static Progress.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Progress.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Progress.Status NONE
public static final Progress.Status IN_PROGRESS
public static final Progress.Status FINISHED
public static final Progress.Status START_PROGRESS
public static final Progress.Status CANCELLED
public static Progress.Status[] values()
for (Progress.Status c : Progress.Status.values()) System.out.println(c);
public static Progress.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 © 2024 Atlassian. All rights reserved.