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