Uses of Class
com.couchbase.client.java.http.NameValuePairs
-
Packages that use NameValuePairs Package Description com.couchbase.client.java.http -
-
Uses of NameValuePairs in com.couchbase.client.java.http
Methods in com.couchbase.client.java.http that return NameValuePairs Modifier and Type Method Description static NameValuePairs
NameValuePairs. of(NameValuePair... pairs)
Returns a new instance that may have repeated names (for example, "number=1&number=2").static NameValuePairs
NameValuePairs. of(List<NameValuePair> pairs)
Returns a new instance that may have repeated names (for example, "number=1&number=2").static NameValuePairs
NameValuePairs. of(Map<String,?> map)
Returns a new instance using the entries of the given map in the map's iteration order.static NameValuePairs
NameValuePairs. ofPreEncoded(String preEncoded)
Returns an instance that uses the given string as-is.Methods in com.couchbase.client.java.http with parameters of type NameValuePairs Modifier and Type Method Description static HttpBody
HttpBody. form(NameValuePairs data)
Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.
-