Package com.couchbase.client.java.http
Class NameValuePair
- java.lang.Object
-
- com.couchbase.client.java.http.NameValuePair
-
public class NameValuePair extends Object
A name-value pair.Used for specifying repeated query parameters / form properties.
-
-
Constructor Summary
Constructors Constructor Description NameValuePair(String name, Object value)The name and value MUST NOT already be URL-encoded; they will be encoded automatically.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static NameValuePairnv(String name, Object value)Static factory method with a concise name suitable for static import.StringtoString()
-
-
-
Method Detail
-
nv
public static NameValuePair nv(String name, Object value)
Static factory method with a concise name suitable for static import. The name and value MUST NOT already be URL-encoded; they will be encoded automatically.
-
-