Uses of Interface
net.pricefx.formulaengine.scripting.queryapi.Orders.Order
Packages that use Orders.Order
Package
Description
The Query API, the unified Groovy API for reading data from Pricefx.
-
Uses of Orders.Order in net.pricefx.formulaengine.scripting.queryapi
Methods in net.pricefx.formulaengine.scripting.queryapi that return Orders.OrderModifier and TypeMethodDescriptionOrders.ascNullsFirst(Expression e) Builds an ascending order with null values evaluated as the lowest value.Orders.ascNullsLast(Expression e) Builds an ascending order with null values evaluated as the highest value.Orders.descNullsFirst(Expression e) Builds a descending order with null values evaluated as the lowest value.Orders.descNullsLast(Expression e) Builds a descending order with null values evaluated as the highest value.Methods in net.pricefx.formulaengine.scripting.queryapi with parameters of type Orders.OrderModifier and TypeMethodDescriptionExprs.cumeDistOver(Orders.Order sortBy, Expression... partitionBy) Builds a window function computing the cumulative distribution of the current row, that is (number of partition rows preceding or peer with the current row) / (total partition rows), ranked over the whole partition (no custom frame).Exprs.percentRankOver(Orders.Order sortBy, Expression... partitionBy) Builds a window function computing the relative rank of the current row, that is (rank - 1) / (total partition rows - 1), ranked over the whole partition (no custom frame).Method parameters in net.pricefx.formulaengine.scripting.queryapi with type arguments of type Orders.OrderModifier and TypeMethodDescriptionPipelineStage.sortBy(Function<Tables.Columns, List<Orders.Order>> orders) Adds a stage that sorts this stage output rows.WindowFunction.sortBy(List<Orders.Order> orders) Defines the ordering of the window.