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

info.ganglia.gmetric4j.gmetric.GMetricSlope Maven / Gradle / Ivy

/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package info.ganglia.gmetric4j.gmetric;

/**
 *
 * @author humphrej
 */
public enum GMetricSlope {
    //zero|positive|negative|both
    ZERO(0),
    POSITIVE(1),
    NEGATIVE(2),
    BOTH(3);
    
    private int gangliaSlope ;
    
    GMetricSlope( int gangliaSlope ) {
        this.gangliaSlope = gangliaSlope ;
    }

    public int getGangliaSlope() {
        return gangliaSlope ;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy