java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Tvm.ResultOfRunTvm
- Record Components:
outMessages- List of output messages' BOCs. Encoded as `base64`decoded- Optional decoded message bodies according to the optional `abi` parameter.account- Updated account state BOC. Encoded as `base64`. Attention! Only `account_state.storage.state.data` part of the BOC is updated.
- Enclosing class:
Tvm
public static record Tvm.ResultOfRunTvm(String[] outMessages, Processing.DecodedOutput decoded, String account)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionResultOfRunTvm(String[] outMessages, Processing.DecodedOutput decoded, String account) Creates an instance of aResultOfRunTvmrecord class. -
Method Summary
Modifier and TypeMethodDescriptionaccount()Returns the value of theaccountrecord component.decoded()Returns the value of thedecodedrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.String[]Returns the value of theoutMessagesrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ResultOfRunTvm
Creates an instance of aResultOfRunTvmrecord class.- Parameters:
outMessages- the value for theoutMessagesrecord componentdecoded- the value for thedecodedrecord componentaccount- the value for theaccountrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
outMessages
Returns the value of theoutMessagesrecord component.- Returns:
- the value of the
outMessagesrecord component
-
decoded
Returns the value of thedecodedrecord component.- Returns:
- the value of the
decodedrecord component
-
account
Returns the value of theaccountrecord component.- Returns:
- the value of the
accountrecord component
-