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

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

There is a newer version: 2.25.6
Show 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 - 2025 Weber Informatics LLC | Privacy Policy