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

tools.testng.ProtocolTypeEnum Maven / Gradle / Ivy

There is a newer version: 0.2.2
Show newest version
package tools.testng;

public enum ProtocolTypeEnum {

    /**
     * HTTP
     */
    HTTP("Http"),

    /**
     * Thrift
     */
    THRIFT("Thrift"),

    ;

    /**
     * 描述
     */
    private String desc;

    ProtocolTypeEnum(String desc) {
        this.desc = desc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy