Serializable, Comparable<RefundStatus>public enum RefundStatus extends Enum<RefundStatus>
| Enum Constant | Description |
|---|---|
ERROR |
|
FAILED |
|
PENDING |
|
SUCCESSFUL |
| Modifier and Type | Method | Description |
|---|---|---|
static RefundStatus |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static RefundStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("pending")
public static final RefundStatus PENDING
@SerializedName("successful")
public static final RefundStatus SUCCESSFUL
@SerializedName("failed")
public static final RefundStatus FAILED
@SerializedName("error")
public static final RefundStatus ERROR
public static RefundStatus[] values()
for (RefundStatus c : RefundStatus.values()) System.out.println(c);
public static RefundStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 The Apache Software Foundation. All rights reserved.