public enum RedirectStatus extends java.lang.Enum<RedirectStatus>
| Enum Constant and Description |
|---|
FAILED
Failed redirect status.
|
PENDING
Pending redirect status.
|
SUCCESS
Success redirect status.
|
| Modifier and Type | Method and Description |
|---|---|
static RedirectStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RedirectStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="PENDING") public static final RedirectStatus PENDING
@SerializedName(value="SUCCESS") public static final RedirectStatus SUCCESS
@SerializedName(value="FAILED") public static final RedirectStatus FAILED
public static RedirectStatus[] values()
for (RedirectStatus c : RedirectStatus.values()) System.out.println(c);
public static RedirectStatus 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