Enum Class ReceiptType
- All Implemented Interfaces:
Serializable,Comparable<ReceiptType>,Constable,Serializer
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic ReceiptTypedeserialize(ByteBuffer buffer) Deserializes an instance of this object from a byte payload.static ReceiptTypefromValue(int value) Creates an instance from its underlying numeric value.intgetValue()Gets the value field.static ReceiptTypeParses a raw value into an instance.byte[]Serializes this object to bytes.intsize()Calculates the size of the object.inttoJson()Converts this object to a JSON-serializable representation.toString()Returns a string representation of this object.static ReceiptTypeReturns the enum constant of this class with the specified name.static ReceiptType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MOSAIC_RENTAL_FEE
-
NAMESPACE_RENTAL_FEE
-
HARVEST_FEE
-
LOCK_HASH_COMPLETED
-
LOCK_HASH_EXPIRED
-
LOCK_SECRET_COMPLETED
-
LOCK_SECRET_EXPIRED
-
LOCK_HASH_CREATED
-
LOCK_SECRET_CREATED
-
MOSAIC_EXPIRED
-
NAMESPACE_EXPIRED
-
NAMESPACE_DELETED
-
INFLATION
-
TRANSACTION_GROUP
-
ADDRESS_ALIAS_RESOLUTION
-
MOSAIC_ALIAS_RESOLUTION
-
-
Method Details
-
values
- ReceiptType.values
Returns an array containing the constants of this enum class, in the order they are declared.
- Returns:
an array containing the constants of this enum class, in the order they are declared
-
valueOf
- ReceiptType.valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
public int getValue()- ReceiptType.getValue
Gets the value field.
- Returns:
The value field.
-
fromValue
- ReceiptType.fromValue
Creates an instance from its underlying numeric value.
- Parameters:
value- Value.- Returns:
Instance corresponding to the numeric value.
-
parse
- ReceiptType.parse
Parses a raw value into an instance.
- Parameters:
rawValue- Raw value to parse.- Returns:
Parsed instance.
-
size
public int size()- ReceiptType.size
Calculates the size of the object.
- Specified by:
sizein interfaceSerializer- Returns:
Size of this object in bytes.
-
deserialize
- ReceiptType.deserialize
Deserializes an instance of this object from a byte payload.
- Parameters:
buffer- Output writer.- Returns:
Deserialized object.
- Throws:
IndexOutOfBoundsException- if the buffer is truncated or a declared length overruns itIllegalArgumentException- if a field carries an invalid value (e.g. a reserved field or unknown discriminator)
-
serialize
public byte[] serialize()- ReceiptType.serialize
Serializes this object to bytes.
- Specified by:
serializein interfaceSerializer- Returns:
Serialized bytes.
-
toString
- ReceiptType.toString
Returns a string representation of this object.
- Overrides:
toStringin classEnum<ReceiptType>- Returns:
String representation of this object.
-
toJson
public int toJson()- ReceiptType.toJson
Converts this object to a JSON-serializable representation.
- Returns:
JSON-serializable representation of this object.
-