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