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

com.fonedynamics.HttpMethod Maven / Gradle / Ivy

package com.fonedynamics;

/** 
 Describes a HTTP method.
*/
enum HttpMethod
{
    Get,
    Post,
    Put,
    Delete;

    static final int SIZE = java.lang.Integer.SIZE;

    int getValue()
    {
        return this.ordinal();
    }

    static HttpMethod forValue(int value)
    {
        return values()[value];
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy