| java.lang.Object net.sf.jasperreports.crosstabs.fill.calculation.CrosstabCell
CrosstabCell | public class CrosstabCell (Code) | | Crosstab cell produced by the crosstab bucketing engine.
author: Lucian Chirita (lucianc@users.sourceforge.net) version: $Id: CrosstabCell.java 1229 2006-04-19 10:27:35Z teodord $ |
Method Summary | |
public BucketDefinition.Bucket[] | getColumnBucketValues() Returns the column bucket values corresponding to this cell. | public int | getColumnTotalGroupIndex() Returns the index of the column total bucket this cell corresponds to.
If this cell corresponds to a column total bucket, this method returns the index of the
bucket. | public MeasureValue[] | getMesureValues() Returns the measure values for this cell. | public BucketDefinition.Bucket[] | getRowBucketValues() Returns the row bucket values corresponding to this cell. | public int | getRowTotalGroupIndex() Returns the index of the row total bucket this cell corresponds to.
If this cell corresponds to a row total bucket, this method returns the index of the
bucket. | public MeasureValue[][][] | getTotals() Returns measure totals corresponding to the cell. |
CrosstabCell | public CrosstabCell(BucketDefinition.Bucket[] rowBucketValues, BucketDefinition.Bucket[] columnBucketValues, MeasureValue[] mesureValues, MeasureValue[][][] totals)(Code) | | Create a crosstab cell.
Parameters: rowBucketValues - the row bucket values corresponding to the cell Parameters: columnBucketValues - the column bucket values corresponding to the cell Parameters: mesureValues - the measure values Parameters: totals - totals corresponding to the cell |
getColumnBucketValues | public BucketDefinition.Bucket[] getColumnBucketValues()(Code) | | Returns the column bucket values corresponding to this cell.
the column bucket values corresponding to this cell |
getColumnTotalGroupIndex | public int getColumnTotalGroupIndex()(Code) | | Returns the index of the column total bucket this cell corresponds to.
If this cell corresponds to a column total bucket, this method returns the index of the
bucket. Otherwise it returns the number of column buckets.
the index of the column total bucket this cell corresponds to |
getMesureValues | public MeasureValue[] getMesureValues()(Code) | | Returns the measure values for this cell.
the measure values for this cell |
getRowBucketValues | public BucketDefinition.Bucket[] getRowBucketValues()(Code) | | Returns the row bucket values corresponding to this cell.
the row bucket values corresponding to this cell |
getRowTotalGroupIndex | public int getRowTotalGroupIndex()(Code) | | Returns the index of the row total bucket this cell corresponds to.
If this cell corresponds to a row total bucket, this method returns the index of the
bucket. Otherwise it returns the number of row buckets.
the index of the row total bucket this cell corresponds to |
getTotals | public MeasureValue[][][] getTotals()(Code) | | Returns measure totals corresponding to the cell.
measure totals corresponding to the cell |
|
|