public static enum BookingGroup.Type extends Enum<BookingGroup.Type>
| Enum Constant and Description |
|---|
CUSTOM |
OTHER_EXPENSES |
OTHER_INCOME |
RECURRENT_INCOME |
RECURRENT_NONSEPA |
RECURRENT_SEPA |
STANDING_ORDER |
| Modifier and Type | Method and Description |
|---|---|
static BookingGroup.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BookingGroup.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BookingGroup.Type STANDING_ORDER
public static final BookingGroup.Type RECURRENT_INCOME
public static final BookingGroup.Type RECURRENT_SEPA
public static final BookingGroup.Type RECURRENT_NONSEPA
public static final BookingGroup.Type CUSTOM
public static final BookingGroup.Type OTHER_INCOME
public static final BookingGroup.Type OTHER_EXPENSES
public static BookingGroup.Type[] values()
for (BookingGroup.Type c : BookingGroup.Type.values()) System.out.println(c);
public static BookingGroup.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.