protected static enum DownloadMapper.Counters extends Enum<DownloadMapper.Counters>
| Enum Constant and Description |
|---|
DOWNLOADED |
FAILED |
PARSE_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static DownloadMapper.Counters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DownloadMapper.Counters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DownloadMapper.Counters DOWNLOADED
public static final DownloadMapper.Counters FAILED
public static final DownloadMapper.Counters PARSE_ERROR
public static DownloadMapper.Counters[] values()
for (DownloadMapper.Counters c : DownloadMapper.Counters.values()) System.out.println(c);
public static DownloadMapper.Counters 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 null