Example usage for org.jfree.data RangeInfo getRangeBounds

List of usage examples for org.jfree.data RangeInfo getRangeBounds

Introduction

In this page you can find the example usage for org.jfree.data RangeInfo getRangeBounds.

Prototype

public Range getRangeBounds(boolean includeInterval);

Source Link

Document

Returns the range of the values in this dataset's range.

Usage

From source file:org.jfree.data.general.DatasetUtils.java

/**
 * Returns the range of values in the range for the dataset.
 *
 * @param dataset  the dataset ({@code null} not permitted).
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 *
 * @return The range (possibly {@code null}).
 *//*from w w w  .  jav  a 2  s. c om*/
public static Range findRangeBounds(CategoryDataset dataset, boolean includeInterval) {
    Args.nullNotPermitted(dataset, "dataset");
    Range result;
    if (dataset instanceof RangeInfo) {
        RangeInfo info = (RangeInfo) dataset;
        result = info.getRangeBounds(includeInterval);
    } else {
        result = iterateRangeBounds(dataset, includeInterval);
    }
    return result;
}

From source file:org.jfree.data.general.DatasetUtils.java

/**
 * Returns the range of values in the range for the dataset.  This method
 * is the partner for the {@link #findDomainBounds(XYDataset, boolean)}
 * method.//w w w . j a v a2  s  . c o m
 *
 * @param dataset  the dataset ({@code null} not permitted).
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 *
 * @return The range (possibly {@code null}).
 */
public static Range findRangeBounds(XYDataset dataset, boolean includeInterval) {
    Args.nullNotPermitted(dataset, "dataset");
    Range result;
    if (dataset instanceof RangeInfo) {
        RangeInfo info = (RangeInfo) dataset;
        result = info.getRangeBounds(includeInterval);
    } else {
        result = iterateRangeBounds(dataset, includeInterval);
    }
    return result;
}

From source file:org.jfree.data.general.DatasetUtilities.java

/**
 * Returns the range of values in the range for the dataset.
 *
 * @param dataset  the dataset (<code>null</code> not permitted).
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 *
 * @return The range (possibly <code>null</code>).
 *///from   w  ww .  j av a2 s.  c  o  m
public static Range findRangeBounds(CategoryDataset dataset, boolean includeInterval) {
    ParamChecks.nullNotPermitted(dataset, "dataset");
    Range result;
    if (dataset instanceof RangeInfo) {
        RangeInfo info = (RangeInfo) dataset;
        result = info.getRangeBounds(includeInterval);
    } else {
        result = iterateRangeBounds(dataset, includeInterval);
    }
    return result;
}

From source file:org.jfree.data.general.DatasetUtilities.java

/**
 * Returns the range of values in the range for the dataset.  This method
 * is the partner for the {@link #findDomainBounds(XYDataset, boolean)}
 * method./*www  . j  av a 2s  .com*/
 *
 * @param dataset  the dataset (<code>null</code> not permitted).
 * @param includeInterval  a flag that determines whether or not the
 *                         y-interval is taken into account.
 *
 * @return The range (possibly <code>null</code>).
 */
public static Range findRangeBounds(XYDataset dataset, boolean includeInterval) {
    ParamChecks.nullNotPermitted(dataset, "dataset");
    Range result;
    if (dataset instanceof RangeInfo) {
        RangeInfo info = (RangeInfo) dataset;
        result = info.getRangeBounds(includeInterval);
    } else {
        result = iterateRangeBounds(dataset, includeInterval);
    }
    return result;
}