Package dev.mintychochip.mint
Enum Class TransactionOperation.Type
- All Implemented Interfaces:
Serializable,Comparable<TransactionOperation.Type>,Constable
- Enclosing class:
TransactionOperation
Types of transaction operations.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFunds added to account.Balance set to absolute value.Inbound transfer (appears in target account operations, relatedAccountId is source).Outbound transfer (appears in source account operations, relatedAccountId is target).Funds removed from account. -
Method Summary
Modifier and TypeMethodDescriptionstatic TransactionOperation.TypeReturns the enum constant of this class with the specified name.static TransactionOperation.Type[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DEPOSIT
Funds added to account. -
WITHDRAW
Funds removed from account. -
TRANSFER_TO
Outbound transfer (appears in source account operations, relatedAccountId is target). -
TRANSFER_FROM
Inbound transfer (appears in target account operations, relatedAccountId is source). -
SET
Balance set to absolute value.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-