Uses of Class
com.google.api.client.http.HttpMethod

Packages that use HttpMethod
com.google.api.client.http Subset of HTTP 1.1 needed from the specification in RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1
com.google.api.client.http.json JSON HTTP library based on the pluggable HTTP library. 
com.google.api.client.testing.http Testing utilities used for writing tests based on this library. 
 

Uses of HttpMethod in com.google.api.client.http
 

Methods in com.google.api.client.http that return HttpMethod
 HttpMethod HttpRequest.getMethod()
          Returns the HTTP request method.
static HttpMethod HttpMethod.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.
 

Methods in com.google.api.client.http with parameters of type HttpMethod
 HttpRequest HttpRequestFactory.buildRequest(HttpMethod method, GenericUrl url, HttpContent content)
          Builds a request for the given HTTP method, URL, and content.
 HttpRequest HttpRequest.setMethod(HttpMethod method)
          Sets the HTTP request method.
 

Uses of HttpMethod in com.google.api.client.http.json
 

Methods in com.google.api.client.http.json that return HttpMethod
 HttpMethod JsonHttpRequest.getMethod()
          Returns the HTTP Method type.
 

Methods in com.google.api.client.http.json with parameters of type HttpMethod
protected  HttpRequest JsonHttpClient.buildHttpRequest(HttpMethod method, GenericUrl url, Object body)
          Create an HttpRequest suitable for use against this service.
protected  InputStream JsonHttpClient.executeAsInputStream(HttpMethod method, GenericUrl url, Object body)
          Builds and executes an HttpRequest and then returns the content input stream of HttpResponse.
protected  HttpResponse JsonHttpClient.executeUnparsed(HttpMethod method, GenericUrl url, Object body)
          Builds and executes a HttpRequest.
 

Constructors in com.google.api.client.http.json with parameters of type HttpMethod
JsonHttpRequest(JsonHttpClient client, HttpMethod method, String uriTemplate, Object content)
          Builds an instance of JsonHttpRequest.
 

Uses of HttpMethod in com.google.api.client.testing.http
 

Fields in com.google.api.client.testing.http with type parameters of type HttpMethod
static Set<HttpMethod> MockHttpTransport.DEFAULT_SUPPORTED_OPTIONAL_METHODS
          Default supported optional methods.
 

Methods in com.google.api.client.testing.http that return types with arguments of type HttpMethod
 Set<HttpMethod> MockHttpTransport.getSupportedOptionalMethods()
          Returns the set of supported optional methods.
 Set<HttpMethod> MockHttpTransport.Builder.getSupportedOptionalMethods()
          Returns the set of supported optional methods.
 

Method parameters in com.google.api.client.testing.http with type arguments of type HttpMethod
 void MockHttpTransport.setSupportedOptionalMethods(EnumSet<HttpMethod> supportedOptionalMethods)
           
 MockHttpTransport.Builder MockHttpTransport.Builder.setSupportedOptionalMethods(Set<HttpMethod> supportedOptionalMethods)
          Sets the set of supported optional methods.
 

Constructor parameters in com.google.api.client.testing.http with type arguments of type HttpMethod
MockHttpTransport(Set<HttpMethod> supportedOptionalMethods)
           
 



Copyright © 2011-2012 Google. All Rights Reserved.