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

core.enums.Method Maven / Gradle / Ivy

package core.enums;


import lombok.Getter;

/**
 * Created by nitina on 8/20/16.
 */
@Getter
public enum Method {

    DELETE("DELETE"),GET("GET"),PATCH("PATCH"),POST("POST"),PUT("PUT");

    Method(String methodName){
        this.methodName = methodName;
    }

    String methodName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy