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

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

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

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

	LOW("Low"), 
	MEDIUM("Medium"), 
	HIGH("High");
	
	private String value;
	
	TestImportance(String value)
	{
		this.value = value;
	}
	
	/* (non-Javadoc)
	 * @see java.lang.Enum#toString()
	 */
	@Override
	public String toString() 
	{
		return this.value;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy