Package com.hyperwallet.clientsdk.model
Enum HyperwalletReceipt.DetailFieldKey
- java.lang.Object
-
- java.lang.Enum<HyperwalletReceipt.DetailFieldKey>
-
- com.hyperwallet.clientsdk.model.HyperwalletReceipt.DetailFieldKey
-
- All Implemented Interfaces:
Serializable,Comparable<HyperwalletReceipt.DetailFieldKey>
- Enclosing class:
- HyperwalletReceipt
public static enum HyperwalletReceipt.DetailFieldKey extends Enum<HyperwalletReceipt.DetailFieldKey>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringkey()static HyperwalletReceipt.DetailFieldKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static HyperwalletReceipt.DetailFieldKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLIENT_PAYMENT_ID
public static final HyperwalletReceipt.DetailFieldKey CLIENT_PAYMENT_ID
-
NOTES
public static final HyperwalletReceipt.DetailFieldKey NOTES
-
MEMO
public static final HyperwalletReceipt.DetailFieldKey MEMO
-
RETURN_OR_RECALL_REASON
public static final HyperwalletReceipt.DetailFieldKey RETURN_OR_RECALL_REASON
-
WEBSITE
public static final HyperwalletReceipt.DetailFieldKey WEBSITE
-
PAYER_NAME
public static final HyperwalletReceipt.DetailFieldKey PAYER_NAME
-
PAYEE_NAME
public static final HyperwalletReceipt.DetailFieldKey PAYEE_NAME
-
CHARITY_NAME
public static final HyperwalletReceipt.DetailFieldKey CHARITY_NAME
-
CARD_HOLDER_NAME
public static final HyperwalletReceipt.DetailFieldKey CARD_HOLDER_NAME
-
BANK_NAME
public static final HyperwalletReceipt.DetailFieldKey BANK_NAME
-
BANK_ID
public static final HyperwalletReceipt.DetailFieldKey BANK_ID
-
BRANCH_NAME
public static final HyperwalletReceipt.DetailFieldKey BRANCH_NAME
-
BRANCH_ID
public static final HyperwalletReceipt.DetailFieldKey BRANCH_ID
-
BANK_ACCOUNT_ID
public static final HyperwalletReceipt.DetailFieldKey BANK_ACCOUNT_ID
-
BANK_ACCOUNT_PURPOSE
public static final HyperwalletReceipt.DetailFieldKey BANK_ACCOUNT_PURPOSE
-
BRANCH_ADDRESS_LINE1
public static final HyperwalletReceipt.DetailFieldKey BRANCH_ADDRESS_LINE1
-
BRANCH_ADDRESS_LINE2
public static final HyperwalletReceipt.DetailFieldKey BRANCH_ADDRESS_LINE2
-
BRANCH_CITY
public static final HyperwalletReceipt.DetailFieldKey BRANCH_CITY
-
BRANCH_STATE_PROVINCE
public static final HyperwalletReceipt.DetailFieldKey BRANCH_STATE_PROVINCE
-
BRANCH_COUNTRY
public static final HyperwalletReceipt.DetailFieldKey BRANCH_COUNTRY
-
BRANCH_POSTAL_CODE
public static final HyperwalletReceipt.DetailFieldKey BRANCH_POSTAL_CODE
-
CHECK_NUMBER
public static final HyperwalletReceipt.DetailFieldKey CHECK_NUMBER
-
CARD_NUMBER
public static final HyperwalletReceipt.DetailFieldKey CARD_NUMBER
-
CARD_EXPIRY_DATE
public static final HyperwalletReceipt.DetailFieldKey CARD_EXPIRY_DATE
-
PAYEE_EMAIL
public static final HyperwalletReceipt.DetailFieldKey PAYEE_EMAIL
-
PAYEE_ADDRESS_LINE1
public static final HyperwalletReceipt.DetailFieldKey PAYEE_ADDRESS_LINE1
-
PAYEE_ADDRESS_LINE2
public static final HyperwalletReceipt.DetailFieldKey PAYEE_ADDRESS_LINE2
-
PAYEE_CITY
public static final HyperwalletReceipt.DetailFieldKey PAYEE_CITY
-
PAYEE_STATE_PROVINCE
public static final HyperwalletReceipt.DetailFieldKey PAYEE_STATE_PROVINCE
-
PAYEE_COUNTRY
public static final HyperwalletReceipt.DetailFieldKey PAYEE_COUNTRY
-
PAYEE_POSTAL_CODE
public static final HyperwalletReceipt.DetailFieldKey PAYEE_POSTAL_CODE
-
PAYMENT_EXPIRY_DATE
public static final HyperwalletReceipt.DetailFieldKey PAYMENT_EXPIRY_DATE
-
SECURITY_QUESTION
public static final HyperwalletReceipt.DetailFieldKey SECURITY_QUESTION
-
SECURITY_ANSWER
public static final HyperwalletReceipt.DetailFieldKey SECURITY_ANSWER
-
-
Method Detail
-
values
public static HyperwalletReceipt.DetailFieldKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HyperwalletReceipt.DetailFieldKey c : HyperwalletReceipt.DetailFieldKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HyperwalletReceipt.DetailFieldKey valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
key
public String key()
-
-