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