public static enum TronAccount.Type extends Enum<TronAccount.Type>
Enum Constant and Description |
---|
ASSET_ISSUE |
CONTRACT |
NORMAL |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static TronAccount.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TronAccount.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TronAccount.Type NORMAL
public static final TronAccount.Type ASSET_ISSUE
public static final TronAccount.Type CONTRACT
public static final TronAccount.Type UNKNOWN
public static TronAccount.Type[] values()
for (TronAccount.Type c : TronAccount.Type.values()) System.out.println(c);
public static TronAccount.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.