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 String
CONNECT
HTTP CONNECT method.static String
DELETE
HTTP DELETE method.static String
GET
HTTP GET method.static String
HEAD
HTTP HEAD method.static String
OPTIONS
HTTP OPTIONS method.static String
PATCH
HTTP PATCH method.static String
POST
HTTP POST method.static String
PUT
HTTP PUT method.static String
TRACE
HTTP 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
-
-