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

org.yamcs.xtce.AlarmLevels Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.xtce;

/**
 * An enumerated list of the possible alarm levels
 * @author nm
 *
 */
public enum AlarmLevels {
    NORMAL("normal"),
    WATCH("watch"),
    WARNING("warning"),
    DISTRESS("distress"),
    CRITICAL("critical"),
    SEVERE("severe");

    public final String xtceName;

    private AlarmLevels(String xtceName) {
        this.xtceName = xtceName;
    }

    public static AlarmLevels fromXtce(String name) {
        for (AlarmLevels l : AlarmLevels.values()) {
            if (l.xtceName.equals(name)) {
                return l;
            }
        }
        throw new IllegalArgumentException("Illegal xtce name " + name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy