Uses of Class
org.htmlunit.util.NameValuePair
Packages that use NameValuePair
Package
Description
Framework classes (contains the
WebClient
class which is the main entry point).Classes specific to HTML pages, particularly the
HtmlPage which represents
an HTML document and provides access to its content.Abstract Http support.
All the customizations we did to make HttpClient behave like a real browser.
Implementations of the various JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
Implementations of the XML JavaScript host objects - users of HtmlUnit shouldn't
need anything in this package.
Miscellaneous utilities.
-
Uses of NameValuePair in org.htmlunit
Methods in org.htmlunit that return types with arguments of type NameValuePairModifier and TypeMethodDescriptionMockWebConnection.RawResponseData.getHeaders()Gets the configured headers.MockWebConnection.getLastParameters()Returns the parameters that were used in the last call to submitRequest().WebRequest.getParameters()Retrieves the request parameters in use.WebRequest.getRequestParameters()INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Retrieves the request parameters to use.WebResponse.getResponseHeaders()Returns the response headers as a list ofNameValuePairs.WebResponseData.getResponseHeaders()Method parameters in org.htmlunit with type arguments of type NameValuePairModifier and TypeMethodDescriptionvoidMockWebConnection.setDefaultResponse(String content, int statusCode, String statusMessage, String contentType, Charset charset, List<NameValuePair> headers) Sets the response that will be returned when the specified URL is requested.voidMockWebConnection.setDefaultResponse(String content, int statusCode, String statusMessage, String contentType, List<NameValuePair> headers) Sets the response that will be returned when the specified URL is requested.voidWebRequest.setRequestParameters(List<NameValuePair> requestParameters) INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Sets the request parameters to use.voidMockWebConnection.setResponse(URL url, byte[] content, int statusCode, String statusMessage, String contentType, List<NameValuePair> headers) Sets the response that will be returned when the specified URL is requested.voidMockWebConnection.setResponse(URL url, String content, int statusCode, String statusMessage, String contentType, Charset charset, List<NameValuePair> headers) Sets the response that will be returned when the specified URL is requested.voidMockWebConnection.setResponse(URL url, String content, int statusCode, String statusMessage, String contentType, List<NameValuePair> headers) Sets the response that will be returned when the specified URL is requested.Constructor parameters in org.htmlunit with type arguments of type NameValuePairModifierConstructorDescriptionWebResponseData(byte[] body, int statusCode, String statusMessage, List<NameValuePair> responseHeaders) Constructs with a raw byte[] (mostly for testing).protectedWebResponseData(int statusCode, String statusMessage, List<NameValuePair> responseHeaders) Constructs without data stream for subclasses that override getBody().WebResponseData(DownloadedContent downloadedContent, int statusCode, String statusMessage, List<NameValuePair> responseHeaders) Constructor. -
Uses of NameValuePair in org.htmlunit.html
Methods in org.htmlunit.html that return NameValuePairModifier and TypeMethodDescriptionHtmlButton.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.HtmlFileInput.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.HtmlImageInput.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.HtmlInput.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.HtmlIsIndex.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.HtmlSelect.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.HtmlSubmitInput.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.HtmlTextArea.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.SubmittableElement.getSubmitNameValuePairs()Returns an array ofNameValuePairs that are the values that will be sent back to the server whenever this element's containing form is submitted.Methods in org.htmlunit.html that return types with arguments of type NameValuePairModifier and TypeMethodDescriptionHtmlForm.getParameterListForSubmit(SubmittableElement submitElement) INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Returns a list ofNameValuePairs that represent the data that will be sent to the server when this form is submitted. -
Uses of NameValuePair in org.htmlunit.http
Methods in org.htmlunit.http that return types with arguments of type NameValuePairModifier and TypeMethodDescriptionstatic List<NameValuePair> HttpUtils.parseUrlQuery(String s, Charset charset) Returns a list ofNameValuePairs URI query parameters.Method parameters in org.htmlunit.http with type arguments of type NameValuePairModifier and TypeMethodDescriptionstatic StringHttpUtils.toQueryFormFields(Iterable<? extends NameValuePair> parameters, Charset charset) -
Uses of NameValuePair in org.htmlunit.httpclient
Methods in org.htmlunit.httpclient that return types with arguments of type NameValuePairModifier and TypeMethodDescriptionstatic List<NameValuePair> HttpClientConverter.parseUrlQuery(String query, Charset charset) Deprecated.Method parameters in org.htmlunit.httpclient with type arguments of type NameValuePairModifier and TypeMethodDescriptionstatic List<org.apache.http.NameValuePair> HttpClientConverter.nameValuePairsToHttpClient(List<NameValuePair> pairs) Converts the specified name/value pairs into HttpClient name/value pairs.static StringHttpClientConverter.toQueryFormFields(List<NameValuePair> parameters, Charset enc) Deprecated.as of version 4.1.0; useHttpUtils.toQueryFormFields(Iterable, Charset)instead -
Uses of NameValuePair in org.htmlunit.javascript.host
Method parameters in org.htmlunit.javascript.host with type arguments of type NameValuePairConstructor parameters in org.htmlunit.javascript.host with type arguments of type NameValuePairModifierConstructorDescriptionNativeParamsIterator(org.htmlunit.corejs.javascript.Scriptable scope, String className, org.htmlunit.javascript.host.URLSearchParams.NativeParamsIterator.Type type, Iterator<NameValuePair> iterator) -
Uses of NameValuePair in org.htmlunit.javascript.host.xml
Constructor parameters in org.htmlunit.javascript.host.xml with type arguments of type NameValuePairModifierConstructorDescriptionFormDataIterator(org.htmlunit.corejs.javascript.Scriptable scope, String className, org.htmlunit.javascript.host.xml.FormData.FormDataIterator.Type type, List<NameValuePair> nameValuePairList) -
Uses of NameValuePair in org.htmlunit.util
Subclasses of NameValuePair in org.htmlunit.utilModifier and TypeClassDescriptionclassINTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
A holder for a key/value pair that represents a file to upload.Methods in org.htmlunit.util that return NameValuePairModifier and TypeMethodDescriptionNameValuePair.normalized()INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
convert null values to empty stringMethods in org.htmlunit.util that return types with arguments of type NameValuePairModifier and TypeMethodDescriptionWebResponseWrapper.getResponseHeaders()Returns the response headers as a list ofNameValuePairs.Method parameters in org.htmlunit.util with type arguments of type NameValuePairModifier and TypeMethodDescriptionstatic CharsetEncodingSniffer.sniffEncoding(List<NameValuePair> headers, InputStream content) Deprecated.as of version 4.0.0; depending on the content useEncodingSniffer.sniffEncodingFromMetaTag(InputStream),EncodingSniffer.sniffEncodingFromXmlDeclaration(InputStream), orEncodingSniffer.sniffEncodingFromCssDeclaration(InputStream)insteadstatic CharsetEncodingSniffer.sniffEncodingFromHttpHeaders(List<NameValuePair> headers) Deprecated.as of version 4.0.0; method will be removed without replacementstatic CharsetEncodingSniffer.sniffHtmlEncoding(List<NameValuePair> headers, InputStream content) Deprecated.as of version 4.0.0; depending on the content useEncodingSniffer.sniffEncodingFromMetaTag(InputStream),EncodingSniffer.sniffEncodingFromXmlDeclaration(InputStream), orEncodingSniffer.sniffEncodingFromCssDeclaration(InputStream)insteadstatic CharsetEncodingSniffer.sniffUnknownContentTypeEncoding(List<NameValuePair> headers, InputStream content) Deprecated.as of version 4.0.0; depending on the content useEncodingSniffer.sniffEncodingFromMetaTag(InputStream),EncodingSniffer.sniffEncodingFromXmlDeclaration(InputStream), orEncodingSniffer.sniffEncodingFromCssDeclaration(InputStream)insteadstatic CharsetEncodingSniffer.sniffXmlEncoding(List<NameValuePair> headers, InputStream content) Deprecated.as of version 4.0.0; depending on the content useEncodingSniffer.sniffEncodingFromMetaTag(InputStream),EncodingSniffer.sniffEncodingFromXmlDeclaration(InputStream), orEncodingSniffer.sniffEncodingFromCssDeclaration(InputStream)instead
HttpUtils.parseUrlQuery(String, Charset)instead