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

org.jfree.chart3d.label.StandardXYZLabelGenerator Maven / Gradle / Ivy

/* ===========================================================
 * Orson Charts : a 3D chart library for the Java(tm) platform
 * ===========================================================
 * 
 * (C)opyright 2013-2020, by Object Refinery Limited.  All rights reserved.
 * 
 * https://github.com/jfree/orson-charts
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 * 
 * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 
 * Other names may be trademarks of their respective owners.]
 * 
 * If you do not wish to be bound by the terms of the GPL, an alternative
 * commercial license can be purchased.  For details, please see visit the
 * Orson Charts home page:
 * 
 * http://www.object-refinery.com/orsoncharts/index.html
 * 
 */

package org.jfree.chart3d.label;

import java.io.Serializable;
import java.util.Formatter;

import org.jfree.chart3d.data.DataUtils;
import org.jfree.chart3d.data.xyz.XYZDataset;
import org.jfree.chart3d.internal.Args;

/**
 * A default implementation of the {@link XYZLabelGenerator} interface.  
 * The implementation uses a {@link java.util.Formatter} instance to generate
 * the labels, which are typically used as the series labels in the chart
 * legend.  Three values are passed to the formatter for possible inclusion
 * in the resulting label: (1) the key for the series, (2) the count for the 
 * number of items in the series (as an {@code Integer}) and (3) the total 
 * of the non-{@code NaN} values in the series (as a {@code Double}).
 * 

* NOTE: This class is serializable, but the serialization format is subject * to change in future releases and should not be relied upon for persisting * instances of this class. * * @since 1.2 */ @SuppressWarnings("serial") public class StandardXYZLabelGenerator implements XYZLabelGenerator, Serializable { /** A label template that will display the series key only. */ public static final String KEY_ONLY_TEMPLATE = "%s"; /** * A label template that will display the series key followed by the * total of the data items for the series (in brackets) with zero decimal * places. */ public static final String TOTAL_TEMPLATE = "%s (%3$,.0f)"; /** * A label template that will display the series key followed by the * total of the data items for the series (in brackets) with zero decimal * places. */ public static final String TOTAL_TEMPLATE_2DP = "%s (%3$,.2f)"; /** * A label template that will display the series key followed by the * number of data items for the series (in brackets). */ public static final String COUNT_TEMPLATE = "%s (%2$,d)"; /** The default label template. */ public static final String DEFAULT_TEMPLATE = KEY_ONLY_TEMPLATE; /** The label template. */ private String template; /** * The default constructor. */ public StandardXYZLabelGenerator() { this(DEFAULT_TEMPLATE); } /** * Creates a new instance with the specified label template. * * @param template the label template ({@code null} not permitted). */ public StandardXYZLabelGenerator(String template) { Args.nullNotPermitted(template, "template"); this.template = template; } /** * Generates a series label. * * @param dataset the dataset ({@code null} not permitted). * @param seriesKey the series key ({@code null} not permitted). * * @return The series label (possibly {@code null}). */ @Override public > String generateSeriesLabel( XYZDataset dataset, S seriesKey) { Args.nullNotPermitted(dataset, "dataset"); Args.nullNotPermitted(seriesKey, "seriesKey"); Formatter formatter = new Formatter(new StringBuilder()); int count = dataset.getItemCount(dataset.getSeriesIndex(seriesKey)); double total = DataUtils.total(dataset, seriesKey); formatter.format(this.template, seriesKey, count, total); String result = formatter.toString(); formatter.close(); return result; } /** * Tests this label generator for equality with an arbitrary object. * * @param obj the object ({@code null} permitted). * * @return A boolean. */ @Override public boolean equals(Object obj) { if (obj == this) { return true; } if (!(obj instanceof StandardXYZLabelGenerator)) { return false; } StandardXYZLabelGenerator that = (StandardXYZLabelGenerator) obj; if (!this.template.equals(that.template)) { return false; } return true; } @Override public int hashCode() { return this.template.hashCode(); } }