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