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

io.atlasmap.v2.AuditStatus Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
package io.atlasmap.v2;

public enum AuditStatus {

    ALL("All"),
    INFO("Info"),
    WARN("Warn"),
    ERROR("Error"),
    NONE("None");

    private final String value;

    AuditStatus(String v) {
        value = v;
    }

    public String value() {
        return value;
    }

    public static AuditStatus fromValue(String v) {
        for (AuditStatus c: AuditStatus.values()) {
            if (c.value.equals(v)) {
                return c;
            }
        }
        throw new IllegalArgumentException(v);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy