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