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

org.apache.ratis.thirdparty.info.ganglia.gmetric4j.gmetric.GMetricType Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package org.apache.ratis.thirdparty.info.ganglia.gmetric4j.gmetric;

/**
 *
 * @author humphrej
 */
public enum GMetricType {
    //string|int8|uint8|int16|uint16|int32|uint32|float|double
    STRING("string"),
    INT8("int8"),
    UINT8("uint8"),
    INT16("int16"),
    UINT16("uint16"),
    INT32("int32"),
    UINT32("uint32"),
    FLOAT("float"),
    DOUBLE("double");
            
    private String gangliaType ;
    
    GMetricType( String gangliaType ) {
        this.gangliaType = gangliaType ;
    }
    
    public String getGangliaType() {
        return gangliaType ;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy