public enum BalanceTypeTO extends Enum<BalanceTypeTO>
| Enum Constant and Description |
|---|
CLOSING_BOOKED |
EXPECTED |
FORWARD_AVAILABLE |
INTERIM_AVAILABLE |
INTERIM_BOOKED |
NONINVOICED |
OPENING_BOOKED |
| Modifier and Type | Method and Description |
|---|---|
static BalanceTypeTO |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BalanceTypeTO[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BalanceTypeTO CLOSING_BOOKED
public static final BalanceTypeTO EXPECTED
public static final BalanceTypeTO INTERIM_BOOKED
public static final BalanceTypeTO OPENING_BOOKED
public static final BalanceTypeTO INTERIM_AVAILABLE
public static final BalanceTypeTO FORWARD_AVAILABLE
public static final BalanceTypeTO NONINVOICED
public static BalanceTypeTO[] values()
for (BalanceTypeTO c : BalanceTypeTO.values()) System.out.println(c);
public static BalanceTypeTO 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 © 2021. All rights reserved.