com.fonedynamics.HttpMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fonedynamics-apiclient Show documentation
Show all versions of fonedynamics-apiclient Show documentation
JDK 1.7 client library for Fone Dynamics services.
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 - 2025 Weber Informatics LLC | Privacy Policy