public enum ExpenseThrough extends Enum<ExpenseThrough>
| Enum Constant and Description |
|---|
ECOSYSTEM
Represents a purchase between accounts of the Ecosystem.
|
EXTERNAL
Represents a purchase outside of the Ecosystem.
|
| Modifier and Type | Method and Description |
|---|---|
static ExpenseThrough |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpenseThrough[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpenseThrough ECOSYSTEM
public static final ExpenseThrough EXTERNAL
public static ExpenseThrough[] values()
for (ExpenseThrough c : ExpenseThrough.values()) System.out.println(c);
public static ExpenseThrough 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 © 2023. All rights reserved.