public enum BalanceTypeTO extends Enum<BalanceTypeTO>
| Enum Constant and Description |
|---|
AUTHORISED |
CLOSINGBOOKED |
EXPECTED |
FORWARDAVAILABLE |
INTERIMAVAILABLE |
NONINVOICED |
OPENINGBOOKED |
| Modifier and Type | Method and Description |
|---|---|
static BalanceTypeTO |
fromValue(String text) |
String |
toString() |
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 CLOSINGBOOKED
public static final BalanceTypeTO EXPECTED
public static final BalanceTypeTO AUTHORISED
public static final BalanceTypeTO OPENINGBOOKED
public static final BalanceTypeTO INTERIMAVAILABLE
public static final BalanceTypeTO FORWARDAVAILABLE
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 nullpublic String toString()
toString in class Enum<BalanceTypeTO>public static BalanceTypeTO fromValue(String text)
Copyright © 2019. All rights reserved.