public enum NameRequestStatus extends java.lang.Enum<NameRequestStatus> implements EnumParam
| Enum Constant and Description |
|---|
DECLINED |
DECLINED_WITH_LINK |
PROCESSING |
RESPONSE |
RESPONSE_WITH_LINK |
SUCCESS |
WAS_ACCEPTED |
WAS_DECLINED |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue() |
java.lang.String |
toString() |
static NameRequestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NameRequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="success") public static final NameRequestStatus SUCCESS
@SerializedName(value="processing") public static final NameRequestStatus PROCESSING
@SerializedName(value="declined") public static final NameRequestStatus DECLINED
@SerializedName(value="was_accepted") public static final NameRequestStatus WAS_ACCEPTED
@SerializedName(value="was_declined") public static final NameRequestStatus WAS_DECLINED
@SerializedName(value="declined_with_link") public static final NameRequestStatus DECLINED_WITH_LINK
@SerializedName(value="response") public static final NameRequestStatus RESPONSE
@SerializedName(value="response_with_link") public static final NameRequestStatus RESPONSE_WITH_LINK
public static NameRequestStatus[] values()
for (NameRequestStatus c : NameRequestStatus.values()) System.out.println(c);
public static NameRequestStatus 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<NameRequestStatus>