public enum CashOutStatus extends Enum<CashOutStatus>
| Enum Constant and Description |
|---|
Available
Indicates cashout for associated market is available
|
Closed
Indicates cashout for associated market is no longer available - is closed
|
Unavailable
Indicates cashout for associated market is un-available
|
| Modifier and Type | Method and Description |
|---|---|
static CashOutStatus |
fromFeedValue(Integer feedValue)
Returns the
CashOutStatus associated with the provided integer value |
static CashOutStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CashOutStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CashOutStatus Available
public static final CashOutStatus Unavailable
public static final CashOutStatus Closed
public static CashOutStatus[] values()
for (CashOutStatus c : CashOutStatus.values()) System.out.println(c);
public static CashOutStatus 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 static CashOutStatus fromFeedValue(Integer feedValue)
CashOutStatus associated with the provided integer valuefeedValue - the integer value provided by the feedCashOutStatus if a matching enum value was found; otherwise nullCopyright © 2016–2025. All rights reserved.