public static enum Settlement.Status extends Enum<Settlement.Status>
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static Settlement.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Settlement.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="approved") public static final Settlement.Status APPROVED
@SerializedName(value="declined") public static final Settlement.Status DECLINED
public static Settlement.Status[] values()
for (Settlement.Status c : Settlement.Status.values()) System.out.println(c);
public static Settlement.Status 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()
Copyright © 2024. All rights reserved.