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

com.magician.route.mvc.enums.ReqMethod Maven / Gradle / Ivy

The newest version!
package com.magician.route.mvc.enums;

public enum ReqMethod {

    POST("POST"), GET("GET"), PUT("PUT"), HEAD("HEAD")
    , PATCH("PATCH"),  DELETE("DELETE")
    ,TRACE("TRACE"), CONNECT("CONNECT");

    private String code;

    ReqMethod(String code){
        this.code = code;
    }

    public String getCode(){
        return this.code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy