public static enum DisputeListParams.Status extends java.lang.Enum<DisputeListParams.Status> implements ApiRequestParams.EnumParam
Enum Constant and Description |
---|
EXPIRED |
LOST |
SUBMITTED |
UNSUBMITTED |
WON |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getValue() |
static DisputeListParams.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisputeListParams.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="expired") public static final DisputeListParams.Status EXPIRED
@SerializedName(value="lost") public static final DisputeListParams.Status LOST
@SerializedName(value="submitted") public static final DisputeListParams.Status SUBMITTED
@SerializedName(value="unsubmitted") public static final DisputeListParams.Status UNSUBMITTED
@SerializedName(value="won") public static final DisputeListParams.Status WON
public static DisputeListParams.Status[] values()
for (DisputeListParams.Status c : DisputeListParams.Status.values()) System.out.println(c);
public static DisputeListParams.Status 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 getValue()
getValue
in interface ApiRequestParams.EnumParam