java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Net.TransactionNode
- Record Components:
id- Transaction id.inMsg- In message id.outMsgs- Out message ids.accountAddr- Account address.totalFees- Transactions total fees.aborted- Aborted flag.exitCode- Compute phase exit code.
- Enclosing class:
Net
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionaborted()Returns the value of theabortedrecord component.Returns the value of theaccountAddrrecord component.final booleanIndicates whether some other object is "equal to" this one.exitCode()Returns the value of theexitCoderecord component.final inthashCode()Returns a hash code value for this object.id()Returns the value of theidrecord component.inMsg()Returns the value of theinMsgrecord component.String[]outMsgs()Returns the value of theoutMsgsrecord component.final StringtoString()Returns a string representation of this record class.Returns the value of thetotalFeesrecord component.
-
Constructor Details
-
TransactionNode
public TransactionNode(String id, String inMsg, String[] outMsgs, String accountAddr, String totalFees, Boolean aborted, Number exitCode) Creates an instance of aTransactionNoderecord class.- Parameters:
id- the value for theidrecord componentinMsg- the value for theinMsgrecord componentoutMsgs- the value for theoutMsgsrecord componentaccountAddr- the value for theaccountAddrrecord componenttotalFees- the value for thetotalFeesrecord componentaborted- the value for theabortedrecord componentexitCode- the value for theexitCoderecord 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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
inMsg
Returns the value of theinMsgrecord component.- Returns:
- the value of the
inMsgrecord component
-
outMsgs
Returns the value of theoutMsgsrecord component.- Returns:
- the value of the
outMsgsrecord component
-
accountAddr
Returns the value of theaccountAddrrecord component.- Returns:
- the value of the
accountAddrrecord component
-
totalFees
Returns the value of thetotalFeesrecord component.- Returns:
- the value of the
totalFeesrecord component
-
aborted
Returns the value of theabortedrecord component.- Returns:
- the value of the
abortedrecord component
-
exitCode
Returns the value of theexitCoderecord component.- Returns:
- the value of the
exitCoderecord component
-