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

com.moon.core.net.enums.RequestMethod Maven / Gradle / Ivy

package com.moon.core.net.enums;

import com.moon.core.enums.EnumDescriptor;

/**
 * @author moonsky
 */
@SuppressWarnings("all")
public enum RequestMethod implements EnumDescriptor {
    GET,
    HEAD,
    POST,
    PUT,
    PATCH,
    DELETE,
    OPTIONS,
    TRACE,
    ;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy