public enum AddressFormat extends java.lang.Enum<AddressFormat>
| Enum Constant and Description |
|---|
FORMAT_A
Format a address format.
|
FORMAT_B
Format b address format.
|
FORMAT_C
Format c address format.
|
| Modifier and Type | Method and Description |
|---|---|
static AddressFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="FORMAT_A") public static final AddressFormat FORMAT_A
@SerializedName(value="FORMAT_B") public static final AddressFormat FORMAT_B
@SerializedName(value="FORMAT_C") public static final AddressFormat FORMAT_C
public static AddressFormat[] values()
for (AddressFormat c : AddressFormat.values()) System.out.println(c);
public static AddressFormat valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null