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