Uses of Enum Class
org.htmlunit.HttpMethod
Packages that use HttpMethod
Package
Description
Provides abstract super classes for different types of actions.
Provides core classes as well as classes to represent the different data measured during a test.
Framework classes (contains the 
WebClient
 class which is the main entry point).- 
Uses of HttpMethod in com.xceptance.xlt.api.actionsMethods in com.xceptance.xlt.api.actions with parameters of type HttpMethodModifier and TypeMethodDescriptionprotected WebRequestAbstractWebAction.createWebRequestSettings(URL url, HttpMethod method, List<NameValuePair> requestParameters) Creates aWebRequestobject from the passed URL, request parameters and request method.protected voidAbstractHtmlPageAction.loadPage(URL url, HttpMethod method, List<NameValuePair> requestParameters) Loads the page using the given request method from the passed URL.protected voidAbstractHtmlPageAction.loadPage(URL url, HttpMethod method, List<NameValuePair> requestParameters, long waitingTime) Loads the page using the given request method from the passed URL.protected voidAbstractLightWeightPageAction.loadPage(URL url, HttpMethod method, List<NameValuePair> requestParameters) Loads the page using the given request method from the passed URL and stores it internally.
- 
Uses of HttpMethod in com.xceptance.xlt.api.engineMethods in com.xceptance.xlt.api.engine that return HttpMethod
- 
Uses of HttpMethod in org.htmlunitMethods in org.htmlunit that return HttpMethodModifier and TypeMethodDescriptionWebRequest.getHttpMethod()Returns the HTTP submit method to use.MockWebConnection.getLastMethod()Returns the method that was used in the last call to submitRequest().static HttpMethodReturns the enum constant of this class with the specified name.static HttpMethod[]HttpMethod.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.htmlunit with parameters of type HttpMethodModifier and TypeMethodDescriptionprotected org.apache.http.client.methods.HttpRequestBaseHttpWebConnection.buildHttpMethod(HttpMethod submitMethod, URI uri) Creates and returns a new HttpClient HTTP method based on the specified parameters.voidWebRequest.setHttpMethod(HttpMethod submitMethod) Sets the HTTP submit method to use.Constructors in org.htmlunit with parameters of type HttpMethodModifierConstructorDescriptionWebRequest(URL url, HttpMethod submitMethod) Instantiates aWebRequestfor the specified URL using the specified HTTP submit method.WebResponse(WebResponseData responseData, URL url, HttpMethod requestMethod, long loadTime) Constructs with all data.