Uses of Interface
org.apache.hc.core5.http.NameValuePair
-
Packages that use NameValuePair Package Description org.apache.hc.core5.http Core HTTP transport component APIs.org.apache.hc.core5.http.io.entity HTTP message entity APIs based on the classic (blocking) I/O model.org.apache.hc.core5.http.io.support Support classes for the classic (blocking) I/O model.org.apache.hc.core5.http.message Core HTTP message components, message element parser and writer APIs and their default implementations.org.apache.hc.core5.http.nio.entity HTTP message entity APIs based on the asynchronous (non-blocking) I/O model.org.apache.hc.core5.http.nio.support Support classes for the asynchronous I/O model.org.apache.hc.core5.http.support org.apache.hc.core5.http2.hpack HTTP/2 HPACK APIs.org.apache.hc.core5.net Core network component APIs and utilities. -
-
Uses of NameValuePair in org.apache.hc.core5.http
Subinterfaces of NameValuePair in org.apache.hc.core5.http Modifier and Type Interface Description interface
FormattedHeader
An HTTP header which is already formatted.interface
Header
Represents an HTTP header field consisting of a field name and a field value.Fields in org.apache.hc.core5.http declared as NameValuePair Modifier and Type Field Description private static NameValuePair[]
ContentType. EMPTY_NAME_VALUE_PAIR_ARRAY
An empty immutableNameValuePair
array.private NameValuePair[]
ContentType. params
Methods in org.apache.hc.core5.http that return NameValuePair Modifier and Type Method Description NameValuePair
HeaderElement. getParameter(int index)
Returns parameter with the given index.NameValuePair
HeaderElement. getParameterByName(java.lang.String name)
Returns the first parameter with the given name.NameValuePair[]
HeaderElement. getParameters()
Returns an array of name / value pairs.Methods in org.apache.hc.core5.http with parameters of type NameValuePair Modifier and Type Method Description static ContentType
ContentType. create(java.lang.String mimeType, NameValuePair... params)
Creates a new instance ofContentType
with the given parameters.private static ContentType
ContentType. create(java.lang.String mimeType, NameValuePair[] params, boolean strict)
ContentType
ContentType. withParameters(NameValuePair... params)
Creates a new instance with this MIME type and the given parameters.Constructors in org.apache.hc.core5.http with parameters of type NameValuePair Constructor Description ContentType(java.lang.String mimeType, java.nio.charset.Charset charset, NameValuePair[] params)
-
Uses of NameValuePair in org.apache.hc.core5.http.io.entity
Methods in org.apache.hc.core5.http.io.entity that return types with arguments of type NameValuePair Modifier and Type Method Description static java.util.List<NameValuePair>
EntityUtils. parse(HttpEntity entity)
Returns a list ofNameValuePairs
as parsed from anHttpEntity
.static java.util.List<NameValuePair>
EntityUtils. parse(HttpEntity entity, int maxStreamLength)
Returns a list ofNameValuePairs
as parsed from anHttpEntity
.Method parameters in org.apache.hc.core5.http.io.entity with type arguments of type NameValuePair Modifier and Type Method Description static HttpEntity
HttpEntities. createUrlEncoded(java.lang.Iterable<? extends NameValuePair> parameters, java.nio.charset.Charset charset)
-
Uses of NameValuePair in org.apache.hc.core5.http.io.support
Methods in org.apache.hc.core5.http.io.support with parameters of type NameValuePair Modifier and Type Method Description ClassicRequestBuilder
ClassicRequestBuilder. addParameter(NameValuePair nvp)
ClassicRequestBuilder
ClassicRequestBuilder. addParameters(NameValuePair... nvps)
-
Uses of NameValuePair in org.apache.hc.core5.http.message
Classes in org.apache.hc.core5.http.message that implement NameValuePair Modifier and Type Class Description class
BasicHeader
ImmutableHeader
.class
BasicNameValuePair
Basic implementation ofNameValuePair
.class
BufferedHeader
This class represents a raw HTTP header whose content is parsed 'on demand' only when the header value needs to be consumed.Fields in org.apache.hc.core5.http.message declared as NameValuePair Modifier and Type Field Description private static NameValuePair[]
BasicHeaderValueParser. EMPTY_NAME_VALUE_ARRAY
An empty immutableNameValuePair
array.private static NameValuePair[]
BasicHeaderElement. EMPTY_NAME_VALUE_PAIR_ARRAY
private NameValuePair[]
BasicHeaderElement. parameters
Methods in org.apache.hc.core5.http.message that return NameValuePair Modifier and Type Method Description NameValuePair
BasicHeaderElement. getParameter(int index)
NameValuePair
BasicHeaderElement. getParameterByName(java.lang.String name)
NameValuePair[]
BasicHeaderElement. getParameters()
NameValuePair
BasicHeaderValueParser. parseNameValuePair(java.lang.CharSequence buffer, ParserCursor cursor)
NameValuePair
HeaderValueParser. parseNameValuePair(java.lang.CharSequence buffer, ParserCursor cursor)
Parses a name=value specification, where the = and value are optional.NameValuePair[]
BasicHeaderValueParser. parseParameters(java.lang.CharSequence buffer, ParserCursor cursor)
NameValuePair[]
HeaderValueParser. parseParameters(java.lang.CharSequence buffer, ParserCursor cursor)
Parses a list of name-value pairs.Methods in org.apache.hc.core5.http.message with parameters of type NameValuePair Modifier and Type Method Description void
BasicHeaderValueFormatter. formatNameValuePair(CharArrayBuffer buffer, NameValuePair nvp, boolean quote)
void
HeaderValueFormatter. formatNameValuePair(CharArrayBuffer buffer, NameValuePair nvp, boolean quote)
Formats one name-value pair, where the value is optional.void
BasicHeaderValueFormatter. formatParameters(CharArrayBuffer buffer, NameValuePair[] nvps, boolean quote)
void
HeaderValueFormatter. formatParameters(CharArrayBuffer buffer, NameValuePair[] nvps, boolean quote)
Formats the parameters of a header element.Constructors in org.apache.hc.core5.http.message with parameters of type NameValuePair Constructor Description BasicHeaderElement(java.lang.String name, java.lang.String value, NameValuePair[] parameters)
Constructor with name, value and parameters. -
Uses of NameValuePair in org.apache.hc.core5.http.nio.entity
Method parameters in org.apache.hc.core5.http.nio.entity with type arguments of type NameValuePair Modifier and Type Method Description static AsyncEntityProducer
AsyncEntityProducers. createUrlEncoded(java.lang.Iterable<? extends NameValuePair> parameters, java.nio.charset.Charset charset)
-
Uses of NameValuePair in org.apache.hc.core5.http.nio.support
Methods in org.apache.hc.core5.http.nio.support with parameters of type NameValuePair Modifier and Type Method Description AsyncRequestBuilder
AsyncRequestBuilder. addParameter(NameValuePair nvp)
AsyncRequestBuilder
AsyncRequestBuilder. addParameters(NameValuePair... nvps)
-
Uses of NameValuePair in org.apache.hc.core5.http.support
Fields in org.apache.hc.core5.http.support with type parameters of type NameValuePair Modifier and Type Field Description private java.util.List<NameValuePair>
AbstractRequestBuilder. parameters
Methods in org.apache.hc.core5.http.support that return types with arguments of type NameValuePair Modifier and Type Method Description java.util.List<NameValuePair>
AbstractRequestBuilder. getParameters()
Methods in org.apache.hc.core5.http.support with parameters of type NameValuePair Modifier and Type Method Description AbstractRequestBuilder<T>
AbstractRequestBuilder. addParameter(NameValuePair nvp)
BasicRequestBuilder
BasicRequestBuilder. addParameter(NameValuePair nvp)
AbstractRequestBuilder<T>
AbstractRequestBuilder. addParameters(NameValuePair... nvps)
BasicRequestBuilder
BasicRequestBuilder. addParameters(NameValuePair... nvps)
-
Uses of NameValuePair in org.apache.hc.core5.http2.hpack
Classes in org.apache.hc.core5.http2.hpack that implement NameValuePair Modifier and Type Class Description (package private) class
HPackHeader
Internal HPack header representation that also contains binary length of header name and header value. -
Uses of NameValuePair in org.apache.hc.core5.net
Fields in org.apache.hc.core5.net with type parameters of type NameValuePair Modifier and Type Field Description private java.util.List<NameValuePair>
URIBuilder. queryParams
Methods in org.apache.hc.core5.net that return NameValuePair Modifier and Type Method Description NameValuePair
URIBuilder. getFirstQueryParam(java.lang.String name)
Gets the firstNameValuePair
for a given name.Methods in org.apache.hc.core5.net that return types with arguments of type NameValuePair Modifier and Type Method Description java.util.List<NameValuePair>
URIBuilder. getQueryParams()
Gets the query parameters as a List.static java.util.List<NameValuePair>
URLEncodedUtils. parse(java.lang.CharSequence s, java.nio.charset.Charset charset)
Deprecated.Returns a list ofNameValuePair
s URI query parameters.static java.util.List<NameValuePair>
URLEncodedUtils. parse(java.lang.CharSequence s, java.nio.charset.Charset charset, char... separators)
Deprecated.Returns a list ofNameValuePair
s parameters.static java.util.List<NameValuePair>
URLEncodedUtils. parse(java.net.URI uri, java.nio.charset.Charset charset)
Deprecated.Returns a list ofNameValuePair
s URI query parameters.static java.util.List<NameValuePair>
WWWFormCodec. parse(java.lang.CharSequence s, java.nio.charset.Charset charset)
Returns a list ofNameValuePair
parameters parsed from theapplication/x-www-form-urlencoded
content.(package private) static java.util.List<NameValuePair>
URIBuilder. parseQuery(java.lang.CharSequence s, java.nio.charset.Charset charset, boolean plusAsBlank)
Methods in org.apache.hc.core5.net with parameters of type NameValuePair Modifier and Type Method Description URIBuilder
URIBuilder. addParameter(NameValuePair nameValuePair)
Adds parameter to URI query.URIBuilder
URIBuilder. setParameters(NameValuePair... nameValuePairs)
Sets URI query parameters.URIBuilder
URIBuilder. setSchemeSpecificPart(java.lang.String schemeSpecificPart, NameValuePair... nvps)
Sets the URI scheme specific part and append a variable arguments list of NameValuePair instance(s) to this part.Method parameters in org.apache.hc.core5.net with type arguments of type NameValuePair Modifier and Type Method Description URIBuilder
URIBuilder. addParameters(java.util.List<NameValuePair> nameValuePairs)
Adds URI query parameters.static java.lang.String
URLEncodedUtils. format(java.lang.Iterable<? extends NameValuePair> parameters, char parameterSeparator, java.nio.charset.Charset charset)
Deprecated.Returns a String that is suitable for use as anapplication/x-www-form-urlencoded
list of parameters in an HTTP PUT or HTTP POST.static java.lang.String
URLEncodedUtils. format(java.lang.Iterable<? extends NameValuePair> parameters, java.nio.charset.Charset charset)
Deprecated.Returns a String that is suitable for use as anapplication/x-www-form-urlencoded
list of parameters in an HTTP PUT or HTTP POST.static java.lang.String
WWWFormCodec. format(java.lang.Iterable<? extends NameValuePair> params, java.nio.charset.Charset charset)
Formats the list ofNameValuePair
parameters into aapplication/x-www-form-urlencoded
content string.static void
WWWFormCodec. format(java.lang.StringBuilder buf, java.lang.Iterable<? extends NameValuePair> params, java.nio.charset.Charset charset)
Formats the list ofNameValuePair
parameters into aapplication/x-www-form-urlencoded
content.(package private) static void
URIBuilder. formatQuery(java.lang.StringBuilder buf, java.lang.Iterable<? extends NameValuePair> params, java.nio.charset.Charset charset, boolean blankAsPlus)
URIBuilder
URIBuilder. setParameters(java.util.List<NameValuePair> nameValuePairs)
Sets URI query parameters.URIBuilder
URIBuilder. setSchemeSpecificPart(java.lang.String schemeSpecificPart, java.util.List<NameValuePair> nvps)
Sets the URI scheme specific part and append a list of NameValuePair to this part.
-