All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.jasperreports.crosstabs.JRCrosstabGroup Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2023 Cloud Software Group, Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */
package net.sf.jasperreports.crosstabs;

import net.sf.jasperreports.crosstabs.type.CrosstabTotalPositionEnum;
import net.sf.jasperreports.engine.JRCloneable;
import net.sf.jasperreports.engine.JRVariable;


/**
 * Base interface for crosstab row and column groups.
 * 
 * @author Lucian Chirita ([email protected])
 */
public interface JRCrosstabGroup extends JRCloneable
{
	/**
	 * Returns the name of the group.
	 * 
	 * @return the name of the group
	 * @see #getVariable()
	 */
	public String getName();
	
	/**
	 * Returns the position of the total row/column for this group.
	 * 

* A group can have a total row/column summing the values for all the * entries in the group. E.g. if there is a Year group having Month as * a subgroup, the total row/column for the Year group would sum the values * for all the years and the total row/column for the Month group would sum * the values for all the months of an year. *

* Possible values for this attribute are: *

    *
  • {@link CrosstabTotalPositionEnum#NONE CrosstabTotalPositionEnum.NONE} * - the group will not display a total row/column
  • *
  • {@link CrosstabTotalPositionEnum#START CrosstabTotalPositionEnum.START} * - the group will display the total row/column before the group rows/columns
  • *
  • {@link CrosstabTotalPositionEnum#END CrosstabTotalPositionEnum.END} * - the group will display the total row/column at the end of the group rows/columns
  • * * @return the position of the total row/column for this group */ public CrosstabTotalPositionEnum getTotalPositionValue(); /** * Returns the bucketing information for this group. *

    * The bucketing information consists of grouping expression and * group ordering. * * @return the bucketing information for this group */ public JRCrosstabBucket getBucket(); /** * Returns the group header cell. *

    * The size of the header cell is computed based on the following rules * (only the row header rules are listed, the ones for columns can be * deducted by symmetrical duality): *

      *
    • the width of the header is given by {@link JRCrosstabRowGroup#getWidth() JRCrosstabRowGroup.getWidth()}
    • *
    • the height of the last row group header is given by the height of the base cell
    • *
    • the height of a non-last row group header is the sum of the next group header's height and * the next group total header's height (0 if the next group doesn't have a total header)
    • *
    *

    * Should never return null, but empty cell contents instead. * * @return the group header cell */ public JRCellContents getHeader(); /** * Returns the group total header cell. *

    * The size of a row group total header is computed based on the following rules: *

      *
    • the width is the sum the widths of this and subsequent row groups
    • *
    • the height is the height of the base cell for this total row
    • *
    *

    * Should never return null, but empty cell contents instead. * * @return the group total header cell */ public JRCellContents getTotalHeader(); /** * Returns the variable associated to this group. *

    * Each group in the crosstab has a variable that can be used * inside the group header as the current group value. * The variable has the same name as the group and the same type * as the bucket expression of the group. * * @return the variable associated to this group */ public JRVariable getVariable(); /** * Returns whether the group has a total row/column. *

    * This method is currently equivalent to * getTotalPosition() != Bucket.TOTAL_POSITION_NONE and is therefore * redundant. * * @return whether the group has a total row/column */ public boolean hasTotal(); /** * Determines whether the header cell of this group spans across all entries in the group, * or whether the header cell repeats for each sub group entry. *

    * If the header cell is set to repeat, the sub group should not have a total row/column. *

    *

    * By default the header cell spans across all entries that are part of the group. *

    * * @return whether the header cell should span across entries in the group; if null * the default will apply */ public Boolean getMergeHeaderCells(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy