public enum StatusReason extends java.lang.Enum<StatusReason>
| Enum Constant and Description |
|---|
ARES_ERROR |
ARES_STATUS |
PARES_ERROR |
PARES_STATUS |
RISK_DECLINED |
RREQ_ERROR |
RREQ_STATUS |
VERES_ERROR |
VERES_STATUS |
| Modifier and Type | Method and Description |
|---|---|
static StatusReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatusReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="ares_error") public static final StatusReason ARES_ERROR
@SerializedName(value="ares_status") public static final StatusReason ARES_STATUS
@SerializedName(value="veres_error") public static final StatusReason VERES_ERROR
@SerializedName(value="veres_status") public static final StatusReason VERES_STATUS
@SerializedName(value="pares_error") public static final StatusReason PARES_ERROR
@SerializedName(value="pares_status") public static final StatusReason PARES_STATUS
@SerializedName(value="rreq_error") public static final StatusReason RREQ_ERROR
@SerializedName(value="rreq_status") public static final StatusReason RREQ_STATUS
@SerializedName(value="risk_declined") public static final StatusReason RISK_DECLINED
public static StatusReason[] values()
for (StatusReason c : StatusReason.values()) System.out.println(c);
public static StatusReason 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