Package io.camunda.zeebe.dmn.impl
Record Class EvaluatedDmnScalaOutput
java.lang.Object
java.lang.Record
io.camunda.zeebe.dmn.impl.EvaluatedDmnScalaOutput
- All Implemented Interfaces:
EvaluatedOutput
public record EvaluatedDmnScalaOutput(String outputId, String outputName, org.agrona.DirectBuffer outputValue)
extends Record
implements EvaluatedOutput
-
Constructor Summary
ConstructorsConstructorDescriptionEvaluatedDmnScalaOutput(String outputId, String outputName, org.agrona.DirectBuffer outputValue) Creates an instance of aEvaluatedDmnScalaOutputrecord 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.static EvaluatedDmnScalaOutputof(org.camunda.dmn.Audit.EvaluatedOutput evaluatedOutput, Function<org.camunda.feel.syntaxtree.Val, org.agrona.DirectBuffer> converter) outputId()Returns the value of theoutputIdrecord component.Returns the value of theoutputNamerecord component.org.agrona.DirectBufferReturns the value of theoutputValuerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
EvaluatedDmnScalaOutput
public EvaluatedDmnScalaOutput(String outputId, String outputName, org.agrona.DirectBuffer outputValue) Creates an instance of aEvaluatedDmnScalaOutputrecord class.- Parameters:
outputId- the value for theoutputIdrecord componentoutputName- the value for theoutputNamerecord componentoutputValue- the value for theoutputValuerecord component
-
-
Method Details
-
of
public static EvaluatedDmnScalaOutput of(org.camunda.dmn.Audit.EvaluatedOutput evaluatedOutput, Function<org.camunda.feel.syntaxtree.Val, org.agrona.DirectBuffer> converter) -
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). -
outputId
Returns the value of theoutputIdrecord component.- Specified by:
outputIdin interfaceEvaluatedOutput- Returns:
- the value of the
outputIdrecord component
-
outputName
Returns the value of theoutputNamerecord component.- Specified by:
outputNamein interfaceEvaluatedOutput- Returns:
- the value of the
outputNamerecord component
-
outputValue
public org.agrona.DirectBuffer outputValue()Returns the value of theoutputValuerecord component.- Specified by:
outputValuein interfaceEvaluatedOutput- Returns:
- the value of the
outputValuerecord component
-