Enum Constant and Description |
---|
FAILED
Failed url status.
|
PENDING
Pending url status.
|
SUCCESS
Success url status.
|
Modifier and Type | Method and Description |
---|---|
static URLStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static URLStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="PENDING") public static final URLStatus PENDING
@SerializedName(value="SUCCEES") public static final URLStatus SUCCESS
@SerializedName(value="FAILED") public static final URLStatus FAILED
public static URLStatus[] values()
for (URLStatus c : URLStatus.values()) System.out.println(c);
public static URLStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null