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

com.aliyun.datahub.client.model.AlarmLevel Maven / Gradle / Ivy

The newest version!
package com.aliyun.datahub.client.model;

public enum AlarmLevel {
    WARNING,
    ERROR,
    CRITICAL;

    public static AlarmLevel fromString(String str) {
        for (AlarmLevel e : AlarmLevel.values()) {
            if (e.name().equalsIgnoreCase(str)) {
                return e;
            }
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy