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

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

package de.gsi.chart.renderer;

/**
 * enum to encode the various error styles that can be drawn by the ErrorDataSetRenderer and HistoryDataSetRenderer
 *
 * @author rstein
 */
public enum ErrorStyle {
    NONE("NONE"),
    ERRORBARS("ERRORBARS"),
    ERRORSURFACE("ERRORSURFACE"),
    ERRORCOMBO("ERRORCOMBO");
    private final String value;

    ErrorStyle(final String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy