public static enum Account.TypeEnum extends Enum<Account.TypeEnum>
| Enum Constant and Description |
|---|
BANK |
CURRENT |
CURRLIAB |
DEPRECIATN |
DIRECTCOSTS |
EQUITY |
EXPENSE |
FIXED |
INVENTORY |
LIABILITY |
NONCURRENT |
OTHERINCOME |
OVERHEADS |
PAYG |
PAYGLIABILITY |
PREPAYMENT |
REVENUE |
SALES |
SUPERANNUATIONEXPENSE |
SUPERANNUATIONLIABILITY |
TERMLIAB |
WAGESEXPENSE |
| Modifier and Type | Method and Description |
|---|---|
static Account.TypeEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static Account.TypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Account.TypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Account.TypeEnum BANK
public static final Account.TypeEnum CURRENT
public static final Account.TypeEnum CURRLIAB
public static final Account.TypeEnum DEPRECIATN
public static final Account.TypeEnum DIRECTCOSTS
public static final Account.TypeEnum EQUITY
public static final Account.TypeEnum EXPENSE
public static final Account.TypeEnum FIXED
public static final Account.TypeEnum INVENTORY
public static final Account.TypeEnum LIABILITY
public static final Account.TypeEnum NONCURRENT
public static final Account.TypeEnum OTHERINCOME
public static final Account.TypeEnum OVERHEADS
public static final Account.TypeEnum PREPAYMENT
public static final Account.TypeEnum REVENUE
public static final Account.TypeEnum SALES
public static final Account.TypeEnum TERMLIAB
public static final Account.TypeEnum PAYGLIABILITY
public static final Account.TypeEnum PAYG
public static final Account.TypeEnum SUPERANNUATIONEXPENSE
public static final Account.TypeEnum SUPERANNUATIONLIABILITY
public static final Account.TypeEnum WAGESEXPENSE
public static Account.TypeEnum[] values()
for (Account.TypeEnum c : Account.TypeEnum.values()) System.out.println(c);
public static Account.TypeEnum 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 getValue()
public String toString()
toString in class Enum<Account.TypeEnum>public static Account.TypeEnum fromValue(String text)
Copyright © 2018. All rights reserved.