Package com.google.api.client.http
Class HttpMethods
- java.lang.Object
-
- com.google.api.client.http.HttpMethods
-
public final class HttpMethods extends Object
HTTP request method constants specified in RFC 2616 Section 5.1.1.- Since:
- 1.12
- Author:
- Yaniv Inbar
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONNECTHTTP CONNECT method.static StringDELETEHTTP DELETE method.static StringGETHTTP GET method.static StringHEADHTTP HEAD method.static StringOPTIONSHTTP OPTIONS method.static StringPATCHHTTP PATCH method.static StringPOSTHTTP POST method.static StringPUTHTTP PUT method.static StringTRACEHTTP TRACE method.
-
-
-
Field Detail
-
CONNECT
public static final String CONNECT
HTTP CONNECT method.- See Also:
- Constant Field Values
-
DELETE
public static final String DELETE
HTTP DELETE method.- See Also:
- Constant Field Values
-
GET
public static final String GET
HTTP GET method.- See Also:
- Constant Field Values
-
HEAD
public static final String HEAD
HTTP HEAD method.- See Also:
- Constant Field Values
-
OPTIONS
public static final String OPTIONS
HTTP OPTIONS method.- See Also:
- Constant Field Values
-
PATCH
public static final String PATCH
HTTP PATCH method.- Since:
- 1.14
- See Also:
- Constant Field Values
-
POST
public static final String POST
HTTP POST method.- See Also:
- Constant Field Values
-
PUT
public static final String PUT
HTTP PUT method.- See Also:
- Constant Field Values
-
TRACE
public static final String TRACE
HTTP TRACE method.- See Also:
- Constant Field Values
-
-