tools.testng.ProtocolTypeEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-autotest-tool Show documentation
Show all versions of java-autotest-tool Show documentation
This is an integration of autotest tools
package tools.testng;
public enum ProtocolTypeEnum {
/**
* HTTP
*/
HTTP("Http"),
/**
* Thrift
*/
THRIFT("Thrift"),
;
/**
* 描述
*/
private String desc;
ProtocolTypeEnum(String desc) {
this.desc = desc;
}
}