Record Class JmixPivotTable.PendingJsFunction
java.lang.Object
java.lang.Record
io.jmix.pivottableflowui.kit.component.JmixPivotTable.PendingJsFunction
- Enclosing class:
- JmixPivotTable<T>
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedPendingJsFunction(String function, elemental.json.JsonObject resultJson) Creates an instance of aPendingJsFunctionrecord class.
- 
Method SummaryModifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.function()Returns the value of thefunctionrecord component.final inthashCode()Returns a hash code value for this object.elemental.json.JsonObjectReturns the value of theresultJsonrecord component.final StringtoString()Returns a string representation of this record class.
- 
Constructor Details- 
PendingJsFunctionCreates an instance of aPendingJsFunctionrecord class.- Parameters:
- function- the value for the- functionrecord component
- resultJson- the value for the- resultJsonrecord component
 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
functionReturns the value of thefunctionrecord component.- Returns:
- the value of the functionrecord component
 
- 
resultJsonpublic elemental.json.JsonObject resultJson()Returns the value of theresultJsonrecord component.- Returns:
- the value of the resultJsonrecord component
 
 
-