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

br.eti.kinoshita.testlinkjavaapi.constants.TestImportance Maven / Gradle / Ivy

There is a newer version: 1.9.20-1
Show newest version
/**
 * 
 */
package br.eti.kinoshita.testlinkjavaapi.constants;

/**
 * @author Bruno P. Kinoshita - http://www.kinoshita.eti.br
 * @since 1.9.0-1
 */
public enum TestImportance {

    LOW(1), MEDIUM(2), HIGH(3);

    private Integer value;

    TestImportance(Integer value) {
	this.value = value;
    }

    /*
     * (non-Javadoc)
     * 
     * @see java.lang.Enum#toString()
     */
    @Override
    public String toString() {
	return Integer.toString(this.value);
    }

    /*
     * (non-Javadoc)
     * 
     * @see br.eti.kinoshita.testlinkjavaapi.model.IntegerValueEnum#getValue()
     */
    public Integer getValue() {
	return this.value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy