public static enum Account.PropertyClassEnum extends Enum<Account.PropertyClassEnum>
| Enum Constant and Description |
|---|
ASSET |
EQUITY |
EXPENSE |
LIABILITY |
REVENUE |
| Modifier and Type | Method and Description |
|---|---|
static Account.PropertyClassEnum |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static Account.PropertyClassEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Account.PropertyClassEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Account.PropertyClassEnum ASSET
public static final Account.PropertyClassEnum EQUITY
public static final Account.PropertyClassEnum EXPENSE
public static final Account.PropertyClassEnum LIABILITY
public static final Account.PropertyClassEnum REVENUE
public static Account.PropertyClassEnum[] values()
for (Account.PropertyClassEnum c : Account.PropertyClassEnum.values()) System.out.println(c);
public static Account.PropertyClassEnum 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.PropertyClassEnum>public static Account.PropertyClassEnum fromValue(String value)
Copyright © 2019. All rights reserved.