public static enum RefundService.RefundListRequest.RefundType extends java.lang.Enum<RefundService.RefundListRequest.RefundType>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static RefundService.RefundListRequest.RefundType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RefundService.RefundListRequest.RefundType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="mandate") public static final RefundService.RefundListRequest.RefundType MANDATE
@SerializedName(value="payment") public static final RefundService.RefundListRequest.RefundType PAYMENT
public static RefundService.RefundListRequest.RefundType[] values()
for (RefundService.RefundListRequest.RefundType c : RefundService.RefundListRequest.RefundType.values()) System.out.println(c);
public static RefundService.RefundListRequest.RefundType 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<RefundService.RefundListRequest.RefundType>