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

com.enonic.xp.web.HttpMethod Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.web;

import java.util.EnumSet;

public enum HttpMethod
{
    GET, POST, HEAD, OPTIONS, PUT, DELETE, TRACE, CONNECT, PATCH, PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, UNLOCK;

    public static EnumSet all()
    {
        return EnumSet.allOf( HttpMethod.class );
    }

    public static EnumSet standard()
    {
        return EnumSet.of( GET, POST, HEAD, OPTIONS, PUT, DELETE, TRACE );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy