Enum AccountTypeBO
- java.lang.Object
-
- java.lang.Enum<AccountTypeBO>
-
- de.adorsys.ledgers.deposit.api.domain.AccountTypeBO
-
- All Implemented Interfaces:
Serializable,Comparable<AccountTypeBO>
public enum AccountTypeBO extends Enum<AccountTypeBO>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Optional<AccountTypeBO>getByValue(String value)StringgetValue()static AccountTypeBOvalueOf(String name)Returns the enum constant of this type with the specified name.static AccountTypeBO[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CACC
public static final AccountTypeBO CACC
-
CASH
public static final AccountTypeBO CASH
-
CHAR
public static final AccountTypeBO CHAR
-
CISH
public static final AccountTypeBO CISH
-
COMM
public static final AccountTypeBO COMM
-
CPAC
public static final AccountTypeBO CPAC
-
LLSV
public static final AccountTypeBO LLSV
-
LOAN
public static final AccountTypeBO LOAN
-
MGLD
public static final AccountTypeBO MGLD
-
MOMA
public static final AccountTypeBO MOMA
-
NREX
public static final AccountTypeBO NREX
-
ODFT
public static final AccountTypeBO ODFT
-
ONDP
public static final AccountTypeBO ONDP
-
OTHR
public static final AccountTypeBO OTHR
-
SACC
public static final AccountTypeBO SACC
-
SLRY
public static final AccountTypeBO SLRY
-
SVGS
public static final AccountTypeBO SVGS
-
TAXE
public static final AccountTypeBO TAXE
-
TRAN
public static final AccountTypeBO TRAN
-
TRAS
public static final AccountTypeBO TRAS
-
-
Method Detail
-
values
public static AccountTypeBO[] 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 (AccountTypeBO c : AccountTypeBO.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccountTypeBO 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
-
getValue
public String getValue()
-
getByValue
public static Optional<AccountTypeBO> getByValue(String value)
-
-