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

de.otto.edison.status.domain.Status Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
package de.otto.edison.status.domain;

public enum Status {

    OK, WARNING, ERROR;

    public static Status plus(final Status first, final Status second) {
        if (first == ERROR || second == ERROR) return ERROR;
        if (first == WARNING || second == WARNING) return WARNING;
        return first;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy