Package unit.java.sdk.model
Enum Transaction.TypeEnum
- java.lang.Object
-
- java.lang.Enum<Transaction.TypeEnum>
-
- unit.java.sdk.model.Transaction.TypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Transaction.TypeEnum>
- Enclosing class:
- Transaction
public static enum Transaction.TypeEnum extends java.lang.Enum<Transaction.TypeEnum>
Gets or Sets type
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Transaction.TypeEnumfromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static Transaction.TypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Transaction.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORIGINATED_ACH_TRANSACTION
public static final Transaction.TypeEnum ORIGINATED_ACH_TRANSACTION
-
RECEIVED_ACH_TRANSACTION
public static final Transaction.TypeEnum RECEIVED_ACH_TRANSACTION
-
RETURNED_ACH_TRANSACTION
public static final Transaction.TypeEnum RETURNED_ACH_TRANSACTION
-
RETURNED_RECEIVED_ACH_TRANSACTION
public static final Transaction.TypeEnum RETURNED_RECEIVED_ACH_TRANSACTION
-
DISHONORED_ACH_TRANSACTION
public static final Transaction.TypeEnum DISHONORED_ACH_TRANSACTION
-
PURCHASE_TRANSACTION
public static final Transaction.TypeEnum PURCHASE_TRANSACTION
-
BOOK_TRANSACTION
public static final Transaction.TypeEnum BOOK_TRANSACTION
-
ATM_TRANSACTION
public static final Transaction.TypeEnum ATM_TRANSACTION
-
FEE_TRANSACTION
public static final Transaction.TypeEnum FEE_TRANSACTION
-
CARD_TRANSACTION
public static final Transaction.TypeEnum CARD_TRANSACTION
-
RELEASE_TRANSACTION
public static final Transaction.TypeEnum RELEASE_TRANSACTION
-
WIRE_TRANSACTION
public static final Transaction.TypeEnum WIRE_TRANSACTION
-
INTEREST_SHARE_TRANSACTION
public static final Transaction.TypeEnum INTEREST_SHARE_TRANSACTION
-
INTEREST_TRANSACTION
public static final Transaction.TypeEnum INTEREST_TRANSACTION
-
ADJUSTMENT_TRANSACTION
public static final Transaction.TypeEnum ADJUSTMENT_TRANSACTION
-
DISPUTE_TRANSACTION
public static final Transaction.TypeEnum DISPUTE_TRANSACTION
-
CHECK_DEPOSIT_TRANSACTION
public static final Transaction.TypeEnum CHECK_DEPOSIT_TRANSACTION
-
RETURNED_CHECK_DEPOSIT_TRANSACTION
public static final Transaction.TypeEnum RETURNED_CHECK_DEPOSIT_TRANSACTION
-
SPONSORED_INTEREST_TRANSACTION
public static final Transaction.TypeEnum SPONSORED_INTEREST_TRANSACTION
-
PAYMENT_ADVANCE_TRANSACTION
public static final Transaction.TypeEnum PAYMENT_ADVANCE_TRANSACTION
-
REPAID_PAYMENT_ADVANCE_TRANSACTION
public static final Transaction.TypeEnum REPAID_PAYMENT_ADVANCE_TRANSACTION
-
CHARGEBACK_TRANSACTION
public static final Transaction.TypeEnum CHARGEBACK_TRANSACTION
-
REWARD_TRANSACTION
public static final Transaction.TypeEnum REWARD_TRANSACTION
-
NEGATIVE_BALANCE_COVERAGE_TRANSACTION
public static final Transaction.TypeEnum NEGATIVE_BALANCE_COVERAGE_TRANSACTION
-
ACCOUNT_LOW_BALANCE_CLOSURE_TRANSACTION
public static final Transaction.TypeEnum ACCOUNT_LOW_BALANCE_CLOSURE_TRANSACTION
-
BANK_REPAYMENT_TRANSACTION
public static final Transaction.TypeEnum BANK_REPAYMENT_TRANSACTION
-
CASH_DEPOSIT_TRANSACTION
public static final Transaction.TypeEnum CASH_DEPOSIT_TRANSACTION
-
CUSTOMER_REPAYMENT_TRANSACTION
public static final Transaction.TypeEnum CUSTOMER_REPAYMENT_TRANSACTION
-
CUSTOMER_REPAYMENT_RETURNED_TRANSACTION
public static final Transaction.TypeEnum CUSTOMER_REPAYMENT_RETURNED_TRANSACTION
-
CHECK_PAYMENT_TRANSACTION
public static final Transaction.TypeEnum CHECK_PAYMENT_TRANSACTION
-
RETURNED_CHECK_PAYMENT_TRANSACTION
public static final Transaction.TypeEnum RETURNED_CHECK_PAYMENT_TRANSACTION
-
CARD_REVERSAL_TRANSACTION
public static final Transaction.TypeEnum CARD_REVERSAL_TRANSACTION
-
FEE_REVERSAL_TRANSACTION
public static final Transaction.TypeEnum FEE_REVERSAL_TRANSACTION
-
PUSH_TO_CARD_REVERSAL_TRANSACTION
public static final Transaction.TypeEnum PUSH_TO_CARD_REVERSAL_TRANSACTION
-
PAYMENT_CANCELED_TRANSACTION
public static final Transaction.TypeEnum PAYMENT_CANCELED_TRANSACTION
-
-
Method Detail
-
values
public static Transaction.TypeEnum[] 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 (Transaction.TypeEnum c : Transaction.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Transaction.TypeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Transaction.TypeEnum>
-
fromValue
public static Transaction.TypeEnum fromValue(java.lang.String value)
-
-