public enum SettlementStatus extends Enum<SettlementStatus>
| Modifier and Type | Method and Description |
|---|---|
String |
getJsonValue() |
static SettlementStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SettlementStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SettlementStatus OPEN
public static final SettlementStatus PENDING
public static final SettlementStatus PAID_OUT
public static final SettlementStatus FAILED
public static SettlementStatus[] values()
for (SettlementStatus c : SettlementStatus.values()) System.out.println(c);
public static SettlementStatus 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 getJsonValue()
Copyright © 2020. All rights reserved.