public enum MoneyFlows extends Enum<MoneyFlows>
| Modifier and Type | Class and Description |
|---|---|
static class |
MoneyFlows.Adapter |
| Enum Constant and Description |
|---|
CHOOSE |
CUSTOM |
MONTHLY |
NOTDETERMINED |
PENDINGFUNDING |
SCP |
| Modifier and Type | Method and Description |
|---|---|
static MoneyFlows |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static MoneyFlows |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MoneyFlows[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoneyFlows NOTDETERMINED
public static final MoneyFlows MONTHLY
public static final MoneyFlows SCP
public static final MoneyFlows CUSTOM
public static final MoneyFlows PENDINGFUNDING
public static final MoneyFlows CHOOSE
public static MoneyFlows[] values()
for (MoneyFlows c : MoneyFlows.values()) System.out.println(c);
public static MoneyFlows 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<MoneyFlows>public static MoneyFlows fromValue(String value)
Copyright © 2024. All rights reserved.