public enum RefundStatus extends Enum<RefundStatus>
| Enum Constant and Description |
|---|
COMPLETED |
CREATED |
PENDING |
PLUGIN_COMPLETED |
PLUGIN_ERRORED |
| Modifier and Type | Method and 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.
|
public static final RefundStatus CREATED
public static final RefundStatus PLUGIN_COMPLETED
public static final RefundStatus PENDING
public static final RefundStatus COMPLETED
public static final RefundStatus PLUGIN_ERRORED
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 © 2010-2014. All Rights Reserved.