public static enum URLInfo.States extends Enum<URLInfo.States>
| Enum Constant and Description |
|---|
DONE |
DOWNLOADING |
ERROR |
EXTRACTING |
EXTRACTING_DONE |
RETRYING |
STOP |
| Modifier and Type | Method and Description |
|---|---|
static URLInfo.States |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static URLInfo.States[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final URLInfo.States EXTRACTING
public static final URLInfo.States EXTRACTING_DONE
public static final URLInfo.States DOWNLOADING
public static final URLInfo.States RETRYING
public static final URLInfo.States STOP
public static final URLInfo.States ERROR
public static final URLInfo.States DONE
public static URLInfo.States[] values()
for (URLInfo.States c : URLInfo.States.values()) System.out.println(c);
public static URLInfo.States 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 © 2016. All rights reserved.