From the documentation here, we can see that it is org.apache.http.NameValuePair
, so looking at the original documentation given here at apache.org, it has the constructor:
public NameValuePair(String name,
String value)
But I also want to store other data type values, like boolean and int. How can I do that?