public static enum PaymentRequest.PaymentRequestStatus extends Enum<PaymentRequest.PaymentRequestStatus>
| Enum Constant and Description |
|---|
APPROVED |
CANCELED |
NEW |
PENDING |
READY |
REJECTED |
| Modifier and Type | Method and Description |
|---|---|
String |
getDisplay() |
static PaymentRequest.PaymentRequestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentRequest.PaymentRequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentRequest.PaymentRequestStatus NEW
public static final PaymentRequest.PaymentRequestStatus READY
public static final PaymentRequest.PaymentRequestStatus PENDING
public static final PaymentRequest.PaymentRequestStatus APPROVED
public static final PaymentRequest.PaymentRequestStatus REJECTED
public static final PaymentRequest.PaymentRequestStatus CANCELED
public static PaymentRequest.PaymentRequestStatus[] values()
for (PaymentRequest.PaymentRequestStatus c : PaymentRequest.PaymentRequestStatus.values()) System.out.println(c);
public static PaymentRequest.PaymentRequestStatus 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 getDisplay()
Copyright © 2014. All rights reserved.