public static enum Transaction.TransactionType extends Enum<Transaction.TransactionType>
Enum Constant and Description |
---|
CANCELED |
COMPLETED |
DECLINED |
DRAFT |
EXPIRED |
EXPIRING_SOON |
OPTED_OUT |
REQUIRES_YOUR_SIGNATURE |
TEMPLATE |
TEMPLATE_SHARED |
TRASHED |
WAITING_COMPLETION |
WAITING_ON_OTHERS |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static Transaction.TransactionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Transaction.TransactionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Transaction.TransactionType REQUIRES_YOUR_SIGNATURE
public static final Transaction.TransactionType WAITING_ON_OTHERS
public static final Transaction.TransactionType EXPIRING_SOON
public static final Transaction.TransactionType COMPLETED
public static final Transaction.TransactionType CANCELED
public static final Transaction.TransactionType DRAFT
public static final Transaction.TransactionType TEMPLATE
public static final Transaction.TransactionType TEMPLATE_SHARED
public static final Transaction.TransactionType TRASHED
public static final Transaction.TransactionType WAITING_COMPLETION
public static final Transaction.TransactionType OPTED_OUT
public static final Transaction.TransactionType DECLINED
public static final Transaction.TransactionType EXPIRED
public static Transaction.TransactionType[] values()
for (Transaction.TransactionType c : Transaction.TransactionType.values()) System.out.println(c);
public static Transaction.TransactionType 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 toString()
toString
in class Enum<Transaction.TransactionType>