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

io.qameta.allure.severity.SeverityLevel Maven / Gradle / Ivy

There is a newer version: 2.30.0
Show newest version
package io.qameta.allure.severity;

import com.fasterxml.jackson.annotation.JsonValue;

import java.io.Serializable;
import java.util.Optional;
import java.util.stream.Stream;

/**
 * @author charlie (Dmitry Baev).
 */
public enum SeverityLevel implements Serializable {

    BLOCKER("blocker"),
    CRITICAL("critical"),
    NORMAL("normal"),
    MINOR("minor"),
    TRIVIAL("trivial");

    private static final long serialVersionUID = 1L;

    private final String value;

    SeverityLevel(final String v) {
        value = v;
    }

    @JsonValue
    public String value() {
        return value;
    }

    public static Optional fromValue(final String value) {
        return Stream.of(values())
                .filter(level -> level.value().equalsIgnoreCase(value))
                .findFirst();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy