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

de.gsi.chart.renderer.PolarTickStep Maven / Gradle / Ivy

package de.gsi.chart.renderer;

public enum PolarTickStep {
    FIVE(5), FIFTEEN(15), THIRTY(30), FOURTY_FIVE(45), SIXTY(60), NINETY(90);

    private final double value;

    PolarTickStep(final double value) {
        this.value = value;
    }

    public double get() { return value; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy