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