public static enum BannedAddress.Command extends java.lang.Enum<BannedAddress.Command>
| Modifier and Type | Method and Description |
|---|---|
static BannedAddress.Command |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BannedAddress.Command[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="insert") public static final BannedAddress.Command INSERT
@SerializedName(value="delete") public static final BannedAddress.Command DELETE
public static BannedAddress.Command[] values()
for (BannedAddress.Command c : BannedAddress.Command.values()) System.out.println(c);
public static BannedAddress.Command 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