public static enum ProgressStatus.STATUS extends Enum<ProgressStatus.STATUS>
| Enum Constant and Description |
|---|
COMPLETED |
ERROR |
INPROGRESS |
NOTESTIMATED |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ProgressStatus.STATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgressStatus.STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressStatus.STATUS NOTESTIMATED
public static final ProgressStatus.STATUS INPROGRESS
public static final ProgressStatus.STATUS COMPLETED
public static final ProgressStatus.STATUS UNKNOWN
public static final ProgressStatus.STATUS ERROR
public static ProgressStatus.STATUS[] values()
for (ProgressStatus.STATUS c : ProgressStatus.STATUS.values()) System.out.println(c);
public static ProgressStatus.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 © 2004–2018 Ideaconsult Ltd. All rights reserved.