public static enum Download.State extends Enum<Download.State>
| Enum Constant and Description |
|---|
ABORTED |
COMPLETED |
COMPLETED_WITH_ERROR |
RUNNING |
RUNNING_WITH_ERROR |
RUNNING_WITH_PROGRESS |
WAITING |
| Modifier and Type | Method and Description |
|---|---|
static Download.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Download.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Download.State WAITING
public static final Download.State RUNNING
public static final Download.State RUNNING_WITH_ERROR
public static final Download.State COMPLETED
public static final Download.State COMPLETED_WITH_ERROR
public static final Download.State ABORTED
public static final Download.State RUNNING_WITH_PROGRESS
public static Download.State[] values()
for (Download.State c : Download.State.values()) System.out.println(c);
public static Download.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 nullCopyright © 2012–2026 cismet GmbH. All rights reserved.