Methods Summary |
---|
public org.apache.http.params.HttpParams | copy()Creates a copy of these parameters.
|
public boolean | getBooleanParameter(java.lang.String name, boolean defaultValue)Returns a {@link Boolean} parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
|
public double | getDoubleParameter(java.lang.String name, double defaultValue)Returns a {@link Double} parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
|
public int | getIntParameter(java.lang.String name, int defaultValue)Returns an {@link Integer} parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
|
public long | getLongParameter(java.lang.String name, long defaultValue)Returns a {@link Long} parameter value with the given name.
If the parameter is not explicitly set, the default value is returned.
|
public java.lang.Object | getParameter(java.lang.String name)Obtains the value of the given parameter.
|
public boolean | isParameterFalse(java.lang.String name)Checks if a boolean parameter is not set or false .
|
public boolean | isParameterTrue(java.lang.String name)Checks if a boolean parameter is set to true .
|
public boolean | removeParameter(java.lang.String name)Removes the parameter with the specified name.
|
public org.apache.http.params.HttpParams | setBooleanParameter(java.lang.String name, boolean value)Assigns a {@link Boolean} to the parameter with the given name
|
public org.apache.http.params.HttpParams | setDoubleParameter(java.lang.String name, double value)Assigns a {@link Double} to the parameter with the given name
|
public org.apache.http.params.HttpParams | setIntParameter(java.lang.String name, int value)Assigns an {@link Integer} to the parameter with the given name
|
public org.apache.http.params.HttpParams | setLongParameter(java.lang.String name, long value)Assigns a {@link Long} to the parameter with the given name
|
public org.apache.http.params.HttpParams | setParameter(java.lang.String name, java.lang.Object value)Assigns the value to the parameter with the given name.
|