br.eti.kinoshita.testlinkjavaapi.model.TestImportance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testlink-java-api Show documentation
Show all versions of testlink-java-api Show documentation
TestLink Java API to interface with TestLink PHP XML-RPC API.
/**
*
*/
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