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
-
hashCode
-
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
-