public static enum ProgressSource.State extends Enum<ProgressSource.State>
Modifier and Type | Method and Description |
---|---|
static ProgressSource.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProgressSource.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProgressSource.State CONNECTED
public static final ProgressSource.State DELETE
public static final ProgressSource.State NEW
public static final ProgressSource.State UPDATE
public static ProgressSource.State 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 nullpublic static ProgressSource.State[] values()
for (ProgressSource.State c : ProgressSource.State.values()) System.out.println(c);