@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum QueryTransactionEventType extends Enum<QueryTransactionEventType>
| Enum Constant and Description |
|---|
BITCOIN_VIN |
BITCOIN_VOUT |
ERC1155_TRANSFER |
ERC20_BURN |
ERC20_DEPOSIT |
ERC20_MINT |
ERC20_TRANSFER |
ERC20_WITHDRAWAL |
ERC721_TRANSFER |
ETH_TRANSFER |
INTERNAL_ETH_TRANSFER |
| Modifier and Type | Method and Description |
|---|---|
static QueryTransactionEventType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static QueryTransactionEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryTransactionEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryTransactionEventType ERC20_TRANSFER
public static final QueryTransactionEventType ERC20_MINT
public static final QueryTransactionEventType ERC20_BURN
public static final QueryTransactionEventType ERC20_DEPOSIT
public static final QueryTransactionEventType ERC20_WITHDRAWAL
public static final QueryTransactionEventType ERC721_TRANSFER
public static final QueryTransactionEventType ERC1155_TRANSFER
public static final QueryTransactionEventType BITCOIN_VIN
public static final QueryTransactionEventType BITCOIN_VOUT
public static final QueryTransactionEventType INTERNAL_ETH_TRANSFER
public static final QueryTransactionEventType ETH_TRANSFER
public static QueryTransactionEventType[] values()
for (QueryTransactionEventType c : QueryTransactionEventType.values()) System.out.println(c);
public static QueryTransactionEventType 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 nullpublic String toString()
toString in class Enum<QueryTransactionEventType>public static QueryTransactionEventType fromValue(String value)
value - real valueIllegalArgumentException - If the specified value does not map to one of the known values in this enum.