public interface JRCrosstabBucket extends JRCloneable
The bucketing information consists of the grouping expression
and sorting information.
The buckets can be sorted according to the natural sorting (if the values
implement Comparable
) or using a comparator.
Modifier and Type | Method and Description |
---|---|
JRExpression |
getComparatorExpression()
Returns the comparator expression.
|
JRExpression |
getExpression()
Returns the grouping expression.
|
BucketOrder |
getOrder()
Returns the bucket sorting type.
|
JRExpression |
getOrderByExpression()
Returns an expression that provides order by values for group buckets.
|
Class<?> |
getValueClass()
Returns the class of the bucket value.
|
String |
getValueClassName()
Returns the string name of the bucket value class.
|
clone
Class<?> getValueClass()
String getValueClassName()
BucketOrder getOrder()
The possible values are:
getComparatorExpression()
JRExpression getExpression()
JRExpression getComparatorExpression()
The result of this expression is used to sort the buckets, in ascending or
descending order (given by getOrder()
.
If the bucket has an order by expression, the comparator will be used to
compare values as produced by that expression.
If no comparator expression is specified, the natural order will be used.
getOrderByExpression()
JRExpression getOrderByExpression()
getExpression()
are used to order the buckets.
The expression is evaluated in the context of the crosstab group and can reference measure variables, which evaluate to group totals.
Copyright © 2021 TIBCO Software Inc.. All rights reserved.