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 aDecodedOutput
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theoutMessages
record component.com.fasterxml.jackson.databind.JsonNode
output()
Returns the value of theoutput
record component.final String
toString()
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 aDecodedOutput
record class.- Parameters:
outMessages
- the value for theoutMessages
record componentoutput
- the value for theoutput
record 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 theoutMessages
record component.- Returns:
- the value of the
outMessages
record component
-
output
-