Uses of Class
com.couchbase.client.java.http.NameValuePair
-
Packages that use NameValuePair Package Description com.couchbase.client.java.http -
-
Uses of NameValuePair in com.couchbase.client.java.http
Methods in com.couchbase.client.java.http that return NameValuePair Modifier and Type Method Description static NameValuePair
NameValuePair. nv(String name, Object value)
Static factory method with a concise name suitable for static import.Methods in com.couchbase.client.java.http with parameters of type NameValuePair Modifier and Type Method Description static HttpBody
HttpBody. form(NameValuePair... data)
Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.static NameValuePairs
NameValuePairs. of(NameValuePair... pairs)
Returns a new instance that may have repeated names (for example, "number=1&number=2").HttpGetOptions
HttpGetOptions. queryString(NameValuePair... values)
Method parameters in com.couchbase.client.java.http with type arguments of type NameValuePair Modifier and Type Method Description static HttpBody
HttpBody. form(List<NameValuePair> data)
Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.static NameValuePairs
NameValuePairs. of(List<NameValuePair> pairs)
Returns a new instance that may have repeated names (for example, "number=1&number=2").HttpGetOptions
HttpGetOptions. queryString(List<NameValuePair> values)
-