public enum RefundStatus extends Enum<RefundStatus>
| Enum Constant and Description |
|---|
FAILED |
PENDING |
PROCESSING |
QUEUED |
REFUNDED |
| Modifier and Type | Method and Description |
|---|---|
String |
getJsonValue() |
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 QUEUED
public static final RefundStatus PENDING
public static final RefundStatus PROCESSING
public static final RefundStatus REFUNDED
public static final RefundStatus FAILED
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 nullpublic String getJsonValue()
Copyright © 2020. All rights reserved.