Uses of Class
net.pricefx.server.dto.calculation.ResultMatrix
-
Packages that use ResultMatrix Package Description net.pricefx.formulaengine Provides Formula Engine API classes.net.pricefx.formulaengine.scripting Provides API related to scripting, including interfacePublicGroovyAPI
, that represents what can be reached in the Groovy element syntax asapi
.net.pricefx.server.dto.calculation Defines set of data transfer object (DTO) classes related to Calculations. -
-
Uses of ResultMatrix in net.pricefx.formulaengine
Methods in net.pricefx.formulaengine that return ResultMatrix Modifier and Type Method Description ResultMatrix
IRebateRecordManager. asResultMatrix(String... attributes)
Return a ResultMatrix listing all RRs in the agreement, optionally the fields/attributes to be shown as matrix columns.ResultMatrix
DatamartContext.DataProfilerResult. getDimensions()
ResultMatrix
DatamartContext.DataProfilerResult. getMeasures()
ResultMatrix
DatamartRowSet. toResultMatrix()
Converts the data toResultMatrix
Limited toDatamartRowSet.RESULTMATRIX_MAXROWS
rows.ResultMatrix
DatamartRowSet. toResultMatrix(int maxRows)
Converts the data toResultMatrix
Limited to user defined number of rows which cannot exceedDatamartRowSet.RESULTMATRIX_MAXROWS
. -
Uses of ResultMatrix in net.pricefx.formulaengine.scripting
Methods in net.pricefx.formulaengine.scripting that return ResultMatrix Modifier and Type Method Description ResultMatrix
PublicGroovyAPI. newMatrix()
Creates a new result matrix DTO object that can be further customized and populated with calculated data.ResultMatrix
PublicGroovyAPI. newMatrix(String... columns)
Creates a new result matrix DTO object that can be further customized and populated with calculated data.ResultMatrix
PublicGroovyAPI. newMatrix(Collection<String> columns)
Creates a new result matrix DTO object that can be further customized and populated with calculated data.ResultMatrix
Matrix2D. toResultMatrix()
ResultMatrix
Matrix2D. toResultMatrix(boolean withColumnFormats)
Converts this Matrix2D into ResultMatrixResultMatrix
Matrix2D. toResultMatrix(Map<String,String> columnMapping)
Create a ResultMatrix from a Matrix2D, selecting only the columns included in the mapping if such a mapping is provided.ResultMatrix
Matrix2D. toResultMatrix(Map<String,String> columnMapping, boolean withColumnFormats)
Methods in net.pricefx.formulaengine.scripting with parameters of type ResultMatrix Modifier and Type Method Description static Matrix2DImpl
Matrix2D. fromResultMatrix(ResultMatrix resultMatrix)
-
Uses of ResultMatrix in net.pricefx.server.dto.calculation
Methods in net.pricefx.server.dto.calculation that return ResultMatrix Modifier and Type Method Description ResultMatrix
ResultMatrix. transpose(String newHeaderColumnName)
Transpose the matrix.ResultMatrix
ResultMatrix. transpose(String newHeaderColumnName, String oldColLabelsInNewColumnName)
Transpose the matrix.ResultMatrix
ResultMatrix. withColumn(String column)
Adds a column to the existing set of columnsResultMatrix
ResultMatrix. withColumn(String column, String tooltip)
Adds a column to the existing set of columns including a tooltipResultMatrix
ResultMatrix. withColumnFormat(String column, FieldFormatType fft)
Sets a column format for a specified columnResultMatrix
ResultMatrix. withColumnFormats(Map<String,FieldFormatType> columnFormats)
Sets a column formats for multiple columns.ResultMatrix
ResultMatrix. withColumns(Collection<String> columns)
Adds columns to the existing set of columnsResultMatrix
ResultMatrix. withColumnTooltip(String column, String tooltip)
Adds a tooltip to a columnResultMatrix
ResultMatrix. withColumnTranslation(String column, Map<String,String> translations)
Adds translated labels for the given column.ResultMatrix
ResultMatrix. withDefaultFormat(FieldFormatType fft)
Sets a default column formatResultMatrix
ResultMatrix. withDisableSorting(boolean disableSorting)
Set sorting capability in UI gridResultMatrix
ResultMatrix. withEnableClientFilter(boolean enableClientFilter)
ResultMatrix
ResultMatrix. withEscapeHTML(boolean escapeHTML)
Set HTML escaping flag.ResultMatrix
ResultMatrix. withPreferenceName(String preferenceName)
Sets the so-called preference name.ResultMatrix
ResultMatrix. withRow(List<Object> row)
Adds a data row.ResultMatrix
ResultMatrix. withRows(List<Map<String,Object>> rows)
Adds multiple data rows.ResultMatrix
ResultMatrix. withTitle(String title)
Sets the title that will be shown as window title of the result matrix in the clientMethods in net.pricefx.server.dto.calculation that return types with arguments of type ResultMatrix Modifier and Type Method Description List<ResultMatrix>
ResultHighchart. getResultMatrixList()
Not intended for public use, required for JSON serialization.Methods in net.pricefx.server.dto.calculation with parameters of type ResultMatrix Modifier and Type Method Description ResultHighchart
ResultHighchart. addResultMatrixTab(ResultMatrix matrix)
The automatically filled data tab can be replaced by customized ResultMatrix data.ResultHighchart
ResultHighchart. setResultMatrixTabs(ResultMatrix... matrices)
The automatically filled data tab can be replaced by customized ResultMatrix data.
-