Enum ReceiptTypeEnum
- java.lang.Object
-
- java.lang.Enum<ReceiptTypeEnum>
-
- io.nem.symbol.sdk.openapi.jersey2.model.ReceiptTypeEnum
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ReceiptTypeEnum>
public enum ReceiptTypeEnum extends java.lang.Enum<ReceiptTypeEnum>
Type of receipt: * 0x124D (4685 decimal) - Mosaic_Rental_Fee. * 0x134E (4942 decimal) - Namespace_Rental_Fee. * 0x2143 (8515 decimal) - Harvest_Fee. * 0x2248 (8776 decimal) - LockHash_Completed. * 0x2348 (9032 decimal) - LockHash_Expired. * 0x2252 (8786 decimal) - LockSecret_Completed. * 0x2352 (9042 decimal) - LockSecret_Expired. * 0x3148 (12616 decimal) - LockHash_Created. * 0x3152 (12626 decimal) - LockSecret_Created. * 0x414D (16717 decimal) - Mosaic_Expired. * 0x414E (16718 decimal) - Namespace_Expired. * 0x424E (16974 decimal) - Namespace_Deleted. * 0x5143 (20803 decimal) - Inflation. * 0xE143 (57667 decimal) - Transaction_Group. * 0xF143 (61763 decimal) - Address_Alias_Resolution. * 0xF243 (62019 decimal) - Mosaic_Alias_Resolution.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NUMBER_12616NUMBER_12626NUMBER_16717NUMBER_16718NUMBER_16974NUMBER_20803NUMBER_4685NUMBER_4942NUMBER_57667NUMBER_61763NUMBER_62019NUMBER_8515NUMBER_8776NUMBER_8786NUMBER_9032NUMBER_9042
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReceiptTypeEnumfromValue(java.lang.Integer value)java.lang.IntegergetValue()java.lang.StringtoString()static ReceiptTypeEnumvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ReceiptTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NUMBER_4685
public static final ReceiptTypeEnum NUMBER_4685
-
NUMBER_4942
public static final ReceiptTypeEnum NUMBER_4942
-
NUMBER_8515
public static final ReceiptTypeEnum NUMBER_8515
-
NUMBER_8776
public static final ReceiptTypeEnum NUMBER_8776
-
NUMBER_9032
public static final ReceiptTypeEnum NUMBER_9032
-
NUMBER_8786
public static final ReceiptTypeEnum NUMBER_8786
-
NUMBER_9042
public static final ReceiptTypeEnum NUMBER_9042
-
NUMBER_12616
public static final ReceiptTypeEnum NUMBER_12616
-
NUMBER_12626
public static final ReceiptTypeEnum NUMBER_12626
-
NUMBER_16717
public static final ReceiptTypeEnum NUMBER_16717
-
NUMBER_16718
public static final ReceiptTypeEnum NUMBER_16718
-
NUMBER_16974
public static final ReceiptTypeEnum NUMBER_16974
-
NUMBER_20803
public static final ReceiptTypeEnum NUMBER_20803
-
NUMBER_57667
public static final ReceiptTypeEnum NUMBER_57667
-
NUMBER_61763
public static final ReceiptTypeEnum NUMBER_61763
-
NUMBER_62019
public static final ReceiptTypeEnum NUMBER_62019
-
-
Method Detail
-
values
public static ReceiptTypeEnum[] 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 (ReceiptTypeEnum c : ReceiptTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReceiptTypeEnum 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<ReceiptTypeEnum>
-
fromValue
public static ReceiptTypeEnum fromValue(java.lang.Integer value)
-
-