Package io.nem.sdk.openapi.jersey2.model
Enum TransactionTypeEnum
- java.lang.Object
-
- java.lang.Enum<TransactionTypeEnum>
-
- io.nem.sdk.openapi.jersey2.model.TransactionTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TransactionTypeEnum>
public enum TransactionTypeEnum extends java.lang.Enum<TransactionTypeEnum>
Type of transaction: * 0x414C (16716 decimal) - AccountLinkTransaction. * 0x4141 (16705 decimal) - AggregateCompleteTransaction. * 0x4241 (16961 decimal) - AggregateBondedTransaction. * 0x414D (16717 decimal) - MosaicDefinitionTransaction. * 0x424D (16973 decimal) - MosaicSupplyChangeTransaction. * 0x414E (16718 decimal) - NamespaceRegistrationTransaction. * 0x424E (16974 decimal) - AddressAliasTransaction. * 0x434E (17230 decimal) - MosaicAliasTransaction. * 0x4144 (16708 decimal) - AccountMetadataTransaction. * 0x4244 (16964 decimal) - MosaicMetadataTransaction. * 0x4344 (17220 decimal) - NamespaceMetadataTransaction. * 0x4155 (16725 decimal) - MultisigAccountModificationTransaction. * 0x4148 (16712 decimal) - HashLockTransaction. * 0x4152 (16722 decimal) - SecretLockTransaction. * 0x4252 (16978 decimal) - SecretProofTransaction. * 0x4150 (16720 decimal) - AccountAddressRestrictionTransaction. * 0x4250 (16976 decimal) - AccountMosaicRestrictionTransaction. * 0x4350 (17232 decimal) - AccountOperationRestrictionTransaction. * 0x4151 (16721 decimal) - MosaicGlobalRestrictionTransaction. * 0x4251 (16977 decimal) - MosaicAddressRestrictionTransaction. * 0x4154 (16724 decimal) - TransferTransaction.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TransactionTypeEnumfromValue(java.lang.Integer value)java.lang.IntegergetValue()java.lang.StringtoString()static TransactionTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TransactionTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUMBER_16716
public static final TransactionTypeEnum NUMBER_16716
-
NUMBER_16705
public static final TransactionTypeEnum NUMBER_16705
-
NUMBER_16961
public static final TransactionTypeEnum NUMBER_16961
-
NUMBER_16717
public static final TransactionTypeEnum NUMBER_16717
-
NUMBER_16973
public static final TransactionTypeEnum NUMBER_16973
-
NUMBER_16718
public static final TransactionTypeEnum NUMBER_16718
-
NUMBER_16974
public static final TransactionTypeEnum NUMBER_16974
-
NUMBER_17230
public static final TransactionTypeEnum NUMBER_17230
-
NUMBER_16708
public static final TransactionTypeEnum NUMBER_16708
-
NUMBER_16964
public static final TransactionTypeEnum NUMBER_16964
-
NUMBER_17220
public static final TransactionTypeEnum NUMBER_17220
-
NUMBER_16725
public static final TransactionTypeEnum NUMBER_16725
-
NUMBER_16712
public static final TransactionTypeEnum NUMBER_16712
-
NUMBER_16722
public static final TransactionTypeEnum NUMBER_16722
-
NUMBER_16978
public static final TransactionTypeEnum NUMBER_16978
-
NUMBER_16720
public static final TransactionTypeEnum NUMBER_16720
-
NUMBER_16976
public static final TransactionTypeEnum NUMBER_16976
-
NUMBER_17232
public static final TransactionTypeEnum NUMBER_17232
-
NUMBER_16721
public static final TransactionTypeEnum NUMBER_16721
-
NUMBER_16977
public static final TransactionTypeEnum NUMBER_16977
-
NUMBER_16724
public static final TransactionTypeEnum NUMBER_16724
-
-
Method Detail
-
values
public static TransactionTypeEnum[] 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 (TransactionTypeEnum c : TransactionTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TransactionTypeEnum valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.Integer getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<TransactionTypeEnum>
-
fromValue
public static TransactionTypeEnum fromValue(java.lang.Integer value)
-
-