public static enum Transaction.EscrowStatus extends Enum<Transaction.EscrowStatus>
Enum Constant and Description |
---|
HELD |
HOLD_PENDING |
REFUNDED |
RELEASE_PENDING |
RELEASED |
UNRECOGNIZED |
Modifier and Type | Method and Description |
---|---|
static Transaction.EscrowStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transaction.EscrowStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transaction.EscrowStatus HELD
public static final Transaction.EscrowStatus HOLD_PENDING
public static final Transaction.EscrowStatus RELEASE_PENDING
public static final Transaction.EscrowStatus RELEASED
public static final Transaction.EscrowStatus REFUNDED
public static final Transaction.EscrowStatus UNRECOGNIZED
public static Transaction.EscrowStatus[] values()
for (Transaction.EscrowStatus c : Transaction.EscrowStatus.values()) System.out.println(c);
public static Transaction.EscrowStatus 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 © 2013-2020. All Rights Reserved.