Enum BalanceTypeBO
- java.lang.Object
-
- java.lang.Enum<BalanceTypeBO>
-
- de.adorsys.ledgers.deposit.api.domain.BalanceTypeBO
-
- All Implemented Interfaces:
Serializable,Comparable<BalanceTypeBO>
public enum BalanceTypeBO extends Enum<BalanceTypeBO>
Describes the type of balances a deposit account can carry.- Author:
- fpo
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOSING_BOOKEDEXPECTEDFORWARD_AVAILABLEINTERIM_AVAILABLEINTERIM_BOOKEDNONINVOICEDOPENING_BOOKED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BalanceTypeBOvalueOf(String name)Returns the enum constant of this type with the specified name.static BalanceTypeBO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLOSING_BOOKED
public static final BalanceTypeBO CLOSING_BOOKED
-
EXPECTED
public static final BalanceTypeBO EXPECTED
-
INTERIM_BOOKED
public static final BalanceTypeBO INTERIM_BOOKED
-
OPENING_BOOKED
public static final BalanceTypeBO OPENING_BOOKED
-
INTERIM_AVAILABLE
public static final BalanceTypeBO INTERIM_AVAILABLE
-
FORWARD_AVAILABLE
public static final BalanceTypeBO FORWARD_AVAILABLE
-
NONINVOICED
public static final BalanceTypeBO NONINVOICED
-
-
Method Detail
-
values
public static BalanceTypeBO[] 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 (BalanceTypeBO c : BalanceTypeBO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BalanceTypeBO 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
-
-