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