Module java4ever.binding
Package tech.deplant.java4ever.binding
Record Class Processing.DecodedOutput
java.lang.Object
java.lang.Record
tech.deplant.java4ever.binding.Processing.DecodedOutput
- Record Components:
outMessages- If the message can't be decoded, then `None` will be stored in the appropriate position. Decoded bodies of the out messages.output- Decoded body of the function output message.
- Enclosing class:
Processing
public static record Processing.DecodedOutput(Abi.DecodedMessageBody[] outMessages, com.fasterxml.jackson.databind.JsonNode output)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionDecodedOutput(Abi.DecodedMessageBody[] outMessages, com.fasterxml.jackson.databind.JsonNode output) Creates an instance of aDecodedOutputrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theoutMessagesrecord component.com.fasterxml.jackson.databind.JsonNodeoutput()Returns the value of theoutputrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
DecodedOutput
public DecodedOutput(Abi.DecodedMessageBody[] outMessages, com.fasterxml.jackson.databind.JsonNode output) Creates an instance of aDecodedOutputrecord class.- Parameters:
outMessages- the value for theoutMessagesrecord componentoutput- the value for theoutputrecord 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
-
output
public com.fasterxml.jackson.databind.JsonNode output()Returns the value of theoutputrecord component.- Returns:
- the value of the
outputrecord component
-