|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<TransactionSearch.TransactionStatus>
paypalnvp.request.TransactionSearch.TransactionStatus
public static enum TransactionSearch.TransactionStatus
Transaction status.
Enum Constant Summary | |
---|---|
Denied
You denied the payment. |
|
PENDING
The payment is pending. |
|
Processing
The payment is being processed. |
|
Reversed
A payment was reversed due to a chargeback or other type of reversal. |
|
Success
The payment has been completed and the funds have been added successfully to your account balance. |
Method Summary | |
---|---|
static TransactionSearch.TransactionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TransactionSearch.TransactionStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TransactionSearch.TransactionStatus PENDING
public static final TransactionSearch.TransactionStatus Processing
public static final TransactionSearch.TransactionStatus Success
public static final TransactionSearch.TransactionStatus Denied
public static final TransactionSearch.TransactionStatus Reversed
Method Detail |
---|
public static TransactionSearch.TransactionStatus[] values()
for (TransactionSearch.TransactionStatus c : TransactionSearch.TransactionStatus.values()) System.out.println(c);
public static TransactionSearch.TransactionStatus 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |