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 NameValuePairNameValuePair. 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 HttpBodyHttpBody. form(NameValuePair... data)Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.static NameValuePairsNameValuePairs. of(NameValuePair... pairs)Returns a new instance that may have repeated names (for example, "number=1&number=2").HttpGetOptionsHttpGetOptions. queryString(NameValuePair... values)Method parameters in com.couchbase.client.java.http with type arguments of type NameValuePair Modifier and Type Method Description static HttpBodyHttpBody. form(List<NameValuePair> data)Creates an HTTP body with content type "application/x-www-form-urlencoded" and the given form data.static NameValuePairsNameValuePairs. of(List<NameValuePair> pairs)Returns a new instance that may have repeated names (for example, "number=1&number=2").HttpGetOptionsHttpGetOptions. queryString(List<NameValuePair> values)
-