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

org.datafx.util.HttpMethods Maven / Gradle / Ivy

The newest version!
package org.datafx.util;

public enum HttpMethods {
    GET("GET"),
    POST("POST"),
    HEAD("HEAD"),
    OPTIONS("OPTIONS"),
    PUT("PUT"),
    DELETE("DELETE"),
    TRACE("TRACE");

    private String name;

    private HttpMethods(String name) {
        this.name = name;
    }

    @Override
    public String toString() {
        return name;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy