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

com.achelois.helical.core.Status Maven / Gradle / Ivy

There is a newer version: 0.1.8
Show newest version
package com.achelois.helical.core;

public enum Status {
    Passed(1),
    Blocked(2),
    Retest(4),
    Failed(5),
    Clarification(6),
    Skip(7);

    private final int value;

    Status(final int value) {
        this.value = value;
    }

    public int getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy