Enum QueryTransactionEventType
- java.lang.Object
-
- java.lang.Enum<QueryTransactionEventType>
-
- software.amazon.awssdk.services.managedblockchainquery.model.QueryTransactionEventType
-
- All Implemented Interfaces:
Serializable,Comparable<QueryTransactionEventType>
@Generated("software.amazon.awssdk:codegen") public enum QueryTransactionEventType extends Enum<QueryTransactionEventType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BITCOIN_VINBITCOIN_VOUTERC1155_TRANSFERERC20_BURNERC20_DEPOSITERC20_MINTERC20_TRANSFERERC20_WITHDRAWALERC721_TRANSFERETH_TRANSFERINTERNAL_ETH_TRANSFERUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QueryTransactionEventTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<QueryTransactionEventType>knownValues()StringtoString()static QueryTransactionEventTypevalueOf(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.
-
-
-
Enum Constant Detail
-
ERC20_TRANSFER
public static final QueryTransactionEventType ERC20_TRANSFER
-
ERC20_MINT
public static final QueryTransactionEventType ERC20_MINT
-
ERC20_BURN
public static final QueryTransactionEventType ERC20_BURN
-
ERC20_DEPOSIT
public static final QueryTransactionEventType ERC20_DEPOSIT
-
ERC20_WITHDRAWAL
public static final QueryTransactionEventType ERC20_WITHDRAWAL
-
ERC721_TRANSFER
public static final QueryTransactionEventType ERC721_TRANSFER
-
ERC1155_TRANSFER
public static final QueryTransactionEventType ERC1155_TRANSFER
-
BITCOIN_VIN
public static final QueryTransactionEventType BITCOIN_VIN
-
BITCOIN_VOUT
public static final QueryTransactionEventType BITCOIN_VOUT
-
INTERNAL_ETH_TRANSFER
public static final QueryTransactionEventType INTERNAL_ETH_TRANSFER
-
ETH_TRANSFER
public static final QueryTransactionEventType ETH_TRANSFER
-
UNKNOWN_TO_SDK_VERSION
public static final QueryTransactionEventType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static QueryTransactionEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (QueryTransactionEventType c : QueryTransactionEventType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QueryTransactionEventType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
toString
public String toString()
- Overrides:
toStringin classEnum<QueryTransactionEventType>
-
fromValue
public static QueryTransactionEventType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- QueryTransactionEventType corresponding to the value
-
knownValues
public static Set<QueryTransactionEventType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownQueryTransactionEventTypes
-
-