Uses of Class
com.google.appengine.api.urlfetch.HTTPMethod
-
Packages that use HTTPMethod Package Description com.google.appengine.api.urlfetch Provides a service to make HTTP/S requests of other servers on the internet. -
-
Uses of HTTPMethod in com.google.appengine.api.urlfetch
Methods in com.google.appengine.api.urlfetch that return HTTPMethod Modifier and Type Method Description HTTPMethodHTTPRequest. getMethod()Gets the HTTP method for this request (GET, POST, etc).static HTTPMethodHTTPMethod. valueOf(String name)Returns the enum constant of this type with the specified name.static HTTPMethod[]HTTPMethod. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.google.appengine.api.urlfetch with parameters of type HTTPMethod Constructor Description HTTPRequest(URL url, HTTPMethod method)Creates aHTTPRequestthat represents an HTTP request to the specified URL with the specified HTTP method (GET, POST, etc).HTTPRequest(URL url, HTTPMethod method, FetchOptions fetchOptions)Creates aHTTPRequestthat represents an HTTP request to the specified URL with the specified HTTP method (GET, POST, etc) and the specifiedFetchOptions.
-