Class JRBaseCrosstabBucket
java.lang.Object
net.sf.jasperreports.crosstabs.base.JRBaseCrosstabBucket
- All Implemented Interfaces:
Serializable,Cloneable,JRCrosstabBucket,JRCloneable
- Direct Known Subclasses:
JRDesignCrosstabBucket
Base read-only implementation of
JRCrosstabBucket.- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected BucketOrderprotected JRExpressionstatic final Stringprotected JRExpressionprotected JRExpressionprotected Class<?> protected Stringprotected String -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedJRBaseCrosstabBucket(JRCrosstabBucket bucket, JRBaseObjectFactory factory) -
Method Summary
Modifier and TypeMethodDescriptionclone()Returns the comparator expression.Returns the grouping expression.getOrder()Returns the bucket sorting type.Returns an expression that provides order by values for group buckets.Class<?> Returns the class of the bucket value.Returns the string name of the bucket value class.
-
Field Details
-
EXCEPTION_MESSAGE_KEY_BUCKET_LOAD_ERROR
- See Also:
-
valueClassName
-
valueClassRealName
-
valueClass
-
bucketOrder
-
expression
-
orderByExpression
-
comparatorExpression
-
-
Constructor Details
-
JRBaseCrosstabBucket
protected JRBaseCrosstabBucket() -
JRBaseCrosstabBucket
-
-
Method Details
-
getValueClassName
Description copied from interface:JRCrosstabBucketReturns the string name of the bucket value class.- Specified by:
getValueClassNamein interfaceJRCrosstabBucket
-
getOrder
Description copied from interface:JRCrosstabBucketReturns the bucket sorting type.The possible values are:
- Specified by:
getOrderin interfaceJRCrosstabBucket- Returns:
- the bucket sorting type
- See Also:
-
getExpression
Description copied from interface:JRCrosstabBucketReturns the grouping expression.- Specified by:
getExpressionin interfaceJRCrosstabBucket- Returns:
- the grouping expression
-
getOrderByExpression
Description copied from interface:JRCrosstabBucketReturns an expression that provides order by values for group buckets. If not set, the bucket values as returned byJRCrosstabBucket.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.
- Specified by:
getOrderByExpressionin interfaceJRCrosstabBucket- Returns:
- the order by value expression for the group bucket
-
getComparatorExpression
Description copied from interface:JRCrosstabBucketReturns the comparator expression.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.- Specified by:
getComparatorExpressionin interfaceJRCrosstabBucket- Returns:
- the comparator expression
- See Also:
-
getValueClass
Description copied from interface:JRCrosstabBucketReturns the class of the bucket value. Any class is allowed as long as it is in the classpath at compile and run time.- Specified by:
getValueClassin interfaceJRCrosstabBucket- Returns:
- a Class instance representing the bucket value class
-
clone
- Specified by:
clonein interfaceJRCloneable- Overrides:
clonein classObject
-