Enum BookingGroupJpaEntity.Type
- java.lang.Object
-
- java.lang.Enum<BookingGroupJpaEntity.Type>
-
- de.adorsys.multibanking.jpa.entity.BookingGroupJpaEntity.Type
-
- All Implemented Interfaces:
Serializable,Comparable<BookingGroupJpaEntity.Type>
- Enclosing class:
- BookingGroupJpaEntity
public static enum BookingGroupJpaEntity.Type extends Enum<BookingGroupJpaEntity.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMOTHER_EXPENSESOTHER_INCOMERECURRENT_INCOMERECURRENT_NONSEPARECURRENT_SEPASTANDING_ORDER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BookingGroupJpaEntity.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static BookingGroupJpaEntity.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STANDING_ORDER
public static final BookingGroupJpaEntity.Type STANDING_ORDER
-
RECURRENT_INCOME
public static final BookingGroupJpaEntity.Type RECURRENT_INCOME
-
RECURRENT_SEPA
public static final BookingGroupJpaEntity.Type RECURRENT_SEPA
-
RECURRENT_NONSEPA
public static final BookingGroupJpaEntity.Type RECURRENT_NONSEPA
-
CUSTOM
public static final BookingGroupJpaEntity.Type CUSTOM
-
OTHER_INCOME
public static final BookingGroupJpaEntity.Type OTHER_INCOME
-
OTHER_EXPENSES
public static final BookingGroupJpaEntity.Type OTHER_EXPENSES
-
-
Method Detail
-
values
public static BookingGroupJpaEntity.Type[] 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 (BookingGroupJpaEntity.Type c : BookingGroupJpaEntity.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BookingGroupJpaEntity.Type 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
-
-