public static enum Address.AddressType extends java.lang.Enum<Address.AddressType>
| Enum Constant and Description |
|---|
ACCOUNT |
CLAIMABLE_BALANCE |
CONTRACT |
LIQUIDITY_POOL |
MUXED_ACCOUNT |
| Modifier and Type | Method and Description |
|---|---|
static Address.AddressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Address.AddressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Address.AddressType ACCOUNT
public static final Address.AddressType CONTRACT
public static final Address.AddressType MUXED_ACCOUNT
public static final Address.AddressType CLAIMABLE_BALANCE
public static final Address.AddressType LIQUIDITY_POOL
public static Address.AddressType[] values()
for (Address.AddressType c : Address.AddressType.values()) System.out.println(c);
public static Address.AddressType 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