public
interface
HttpParams
org.apache.http.params.HttpParams |
This interface was deprecated
in API level 22.
Please use openConnection()
instead.
Please visit this webpage
for further details.
Represents a collection of HTTP protocol and framework parameters.
Public methods | |
---|---|
abstract
HttpParams
|
copy()
Creates a copy of these parameters. |
abstract
boolean
|
getBooleanParameter(String name, boolean defaultValue)
Returns a |
abstract
double
|
getDoubleParameter(String name, double defaultValue)
Returns a |
abstract
int
|
getIntParameter(String name, int defaultValue)
Returns an |
abstract
long
|
getLongParameter(String name, long defaultValue)
Returns a |
abstract
Object
|
getParameter(String name)
Obtains the value of the given parameter. |
abstract
boolean
|
isParameterFalse(String name)
Checks if a boolean parameter is not set or |
abstract
boolean
|
isParameterTrue(String name)
Checks if a boolean parameter is set to |
abstract
boolean
|
removeParameter(String name)
Removes the parameter with the specified name. |
abstract
HttpParams
|
setBooleanParameter(String name, boolean value)
Assigns a |
abstract
HttpParams
|
setDoubleParameter(String name, double value)
Assigns a |
abstract
HttpParams
|
setIntParameter(String name, int value)
Assigns an |
abstract
HttpParams
|
setLongParameter(String name, long value)
Assigns a |
abstract
HttpParams
|
setParameter(String name, Object value)
Assigns the value to the parameter with the given name. |
HttpParams copy ()
Creates a copy of these parameters.
Returns | |
---|---|
HttpParams |
a new set of parameters holding the same values as this one |
boolean getBooleanParameter (String name, boolean defaultValue)
Returns a Boolean
parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
Parameters | |
---|---|
name |
String :
the parent name. |
defaultValue |
boolean :
the default value. |
Returns | |
---|---|
boolean |
a Boolean that represents the value of the parameter. |
See also:
double getDoubleParameter (String name, double defaultValue)
Returns a Double
parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
Parameters | |
---|---|
name |
String :
the parent name. |
defaultValue |
double :
the default value. |
Returns | |
---|---|
double |
a Double that represents the value of the parameter. |
See also:
int getIntParameter (String name, int defaultValue)
Returns an Integer
parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
Parameters | |
---|---|
name |
String :
the parent name. |
defaultValue |
int :
the default value. |
Returns | |
---|---|
int |
a Integer that represents the value of the parameter. |
See also:
long getLongParameter (String name, long defaultValue)
Returns a Long
parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
Parameters | |
---|---|
name |
String :
the parent name. |
defaultValue |
long :
the default value. |
Returns | |
---|---|
long |
a Long that represents the value of the parameter. |
See also:
Object getParameter (String name)
Obtains the value of the given parameter.
Parameters | |
---|---|
name |
String :
the parent name. |
Returns | |
---|---|
Object |
an object that represents the value of the parameter,
null if the parameter is not set or if it
is explicitly set to null |
See also:
boolean isParameterFalse (String name)
Checks if a boolean parameter is not set or false
.
Parameters | |
---|---|
name |
String :
parameter name |
Returns | |
---|---|
boolean |
true if the parameter is either not set or
set to value false,
false if it is set to true
|
boolean isParameterTrue (String name)
Checks if a boolean parameter is set to true
.
Parameters | |
---|---|
name |
String :
parameter name |
Returns | |
---|---|
boolean |
true if the parameter is set to value true,
false if it is not set or set to false
|
boolean removeParameter (String name)
Removes the parameter with the specified name.
Parameters | |
---|---|
name |
String :
parameter name |
Returns | |
---|---|
boolean |
true if the parameter existed and has been removed, false else. |
HttpParams setBooleanParameter (String name, boolean value)
Assigns a Boolean
to the parameter with the given name
Parameters | |
---|---|
name |
String :
parameter name |
value |
boolean :
parameter value
|
Returns | |
---|---|
HttpParams |
HttpParams setDoubleParameter (String name, double value)
Assigns a Double
to the parameter with the given name
Parameters | |
---|---|
name |
String :
parameter name |
value |
double :
parameter value
|
Returns | |
---|---|
HttpParams |
HttpParams setIntParameter (String name, int value)
Assigns an Integer
to the parameter with the given name
Parameters | |
---|---|
name |
String :
parameter name |
value |
int :
parameter value
|
Returns | |
---|---|
HttpParams |
HttpParams setLongParameter (String name, long value)
Assigns a Long
to the parameter with the given name
Parameters | |
---|---|
name |
String :
parameter name |
value |
long :
parameter value
|
Returns | |
---|---|
HttpParams |
HttpParams setParameter (String name, Object value)
Assigns the value to the parameter with the given name.
Parameters | |
---|---|
name |
String :
parameter name |
value |
Object :
parameter value
|
Returns | |
---|---|
HttpParams |