be.ceau.chart.dataset.PolarDataset.java Source code

Java tutorial

Introduction

Here is the source code for be.ceau.chart.dataset.PolarDataset.java

Source

/*
   Copyright 2016 Marceau Dewilde <m@ceau.be>
    
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
    
  http://www.apache.org/licenses/LICENSE-2.0
    
   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
*/
package be.ceau.chart.dataset;

import java.math.BigDecimal;

import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;

@JsonInclude(Include.NON_EMPTY)
@JsonAutoDetect(fieldVisibility = Visibility.ANY, getterVisibility = Visibility.NONE, setterVisibility = Visibility.NONE)
public class PolarDataset extends RoundDataset<PolarDataset, BigDecimal> {

    /**
     * Sets the backing data list to the argument, replacing any data already
     * added or set
     * 
     * @param data
     *            The data to plot in a line
     */
    public PolarDataset setData(int... data) {
        clearData();
        if (data != null) {
            for (int i = 0; i < data.length; i++) {
                this.data.add(new BigDecimal(data[i]));
            }
        }
        return this;
    }

    /**
     * Sets the backing data list to the argument, replacing any data already
     * added or set
     * 
     * @param data
     *            The data to plot in a line
     */
    public PolarDataset setData(double... data) {
        clearData();
        if (data != null) {
            for (int i = 0; i < data.length; i++) {
                this.data.add(new BigDecimal(String.valueOf(data[i])));
            }
        }
        return this;
    }

    /**
     * Add the data point to this {@code Dataset}
     * 
     * @see #setDataPoints(List)
     */
    public PolarDataset addData(int data) {
        this.data.add(new BigDecimal(data));
        return this;
    }

    /**
     * Add the data point to this {@code Dataset}
     *
     * @see #setDataPoints(List)
     */
    public PolarDataset addData(double data) {
        this.data.add(new BigDecimal(String.valueOf(data)));
        return this;
    }

}