fromString static method
Implementation
static MetricType fromString(String string) {
var returnType = counter;
if (string == "Gauge") {
returnType = gauge;
}
return returnType;
}
static MetricType fromString(String string) {
var returnType = counter;
if (string == "Gauge") {
returnType = gauge;
}
return returnType;
}