public enum MulticurrencyAccountLevel extends Enum<MulticurrencyAccountLevel>
| Enum Constant and Description |
|---|
AGGREGATION |
AGGREGATION_AND_SUBACCOUNT |
SUBACCOUNT |
| Modifier and Type | Method and Description |
|---|---|
static MulticurrencyAccountLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MulticurrencyAccountLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MulticurrencyAccountLevel SUBACCOUNT
public static final MulticurrencyAccountLevel AGGREGATION
public static final MulticurrencyAccountLevel AGGREGATION_AND_SUBACCOUNT
public static MulticurrencyAccountLevel[] values()
for (MulticurrencyAccountLevel c : MulticurrencyAccountLevel.values()) System.out.println(c);
public static MulticurrencyAccountLevel 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 nullCopyright © 2018 Pivotal Software, Inc.. All rights reserved.