public static enum Account.TypeEnum extends Enum<Account.TypeEnum>
| Enum Constant and Description |
|---|
BANK |
EMPLOYERSNIC |
NICLIABILITY |
PAYEECONTRIBUTION |
PAYELIABILITY |
WAGESEXPENSE |
WAGESPAYABLE |
| Modifier and Type | Method and Description |
|---|---|
static Account.TypeEnum |
fromValue(String value) |
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 EMPLOYERSNIC
public static final Account.TypeEnum NICLIABILITY
public static final Account.TypeEnum PAYEECONTRIBUTION
public static final Account.TypeEnum PAYELIABILITY
public static final Account.TypeEnum WAGESPAYABLE
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 value)
Copyright © 2020. All rights reserved.