Enum AccountStatusIndicator
- java.lang.Object
-
- java.lang.Enum<AccountStatusIndicator>
-
- org.cyclos.model.banking.accounts.AccountStatusIndicator
-
- All Implemented Interfaces:
Serializable,Comparable<AccountStatusIndicator>,HasMessageKey
public enum AccountStatusIndicator extends Enum<AccountStatusIndicator> implements HasMessageKey
The account status indicators are extra information shown in the account history
-
-
Enum Constant Summary
Enum Constants Enum Constant Description A_RATEAVAILABLE_BALANCEBALANCEBALANCE_AT_BEGINBALANCE_AT_ENDCREDIT_LIMITD_RATENEGATIVE_SINCENET_INFLOWRESERVED_AMOUNTTOTAL_INCOMETOTAL_OUTFLOWUPPER_CREDIT_LIMITVIRTUAL_RATED_BALANCE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description MessageKeygetMessageKey()static AccountStatusIndicatorvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountStatusIndicator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BALANCE
public static final AccountStatusIndicator BALANCE
-
RESERVED_AMOUNT
public static final AccountStatusIndicator RESERVED_AMOUNT
-
AVAILABLE_BALANCE
public static final AccountStatusIndicator AVAILABLE_BALANCE
-
CREDIT_LIMIT
public static final AccountStatusIndicator CREDIT_LIMIT
-
UPPER_CREDIT_LIMIT
public static final AccountStatusIndicator UPPER_CREDIT_LIMIT
-
NEGATIVE_SINCE
public static final AccountStatusIndicator NEGATIVE_SINCE
-
VIRTUAL_RATED_BALANCE
public static final AccountStatusIndicator VIRTUAL_RATED_BALANCE
-
D_RATE
public static final AccountStatusIndicator D_RATE
-
A_RATE
public static final AccountStatusIndicator A_RATE
-
BALANCE_AT_BEGIN
public static final AccountStatusIndicator BALANCE_AT_BEGIN
-
BALANCE_AT_END
public static final AccountStatusIndicator BALANCE_AT_END
-
TOTAL_INCOME
public static final AccountStatusIndicator TOTAL_INCOME
-
TOTAL_OUTFLOW
public static final AccountStatusIndicator TOTAL_OUTFLOW
-
NET_INFLOW
public static final AccountStatusIndicator NET_INFLOW
-
-
Method Detail
-
values
public static AccountStatusIndicator[] 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 (AccountStatusIndicator c : AccountStatusIndicator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountStatusIndicator 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
-
getMessageKey
public MessageKey getMessageKey()
- Specified by:
getMessageKeyin interfaceHasMessageKey
-
-