HTTPClient
Class NVPair
java.lang.Object
|
+--HTTPClient.NVPair
- public final class NVPair
- extends Object
This class holds a Name/Value pair of strings. It's used for headers,
form-data, attribute-lists, etc. This class is immutable.
- Version:
- 0.3-3 06/05/2001
- Author:
- Ronald Tschalär
Constructor Summary |
NVPair(NVPair p)
Creates a copy of a given name/value pair. |
NVPair(String name,
String value)
Creates a new name/value pair and initializes it to the
specified name and value. |
NVPair
public NVPair(String name,
String value)
- Creates a new name/value pair and initializes it to the
specified name and value.
- Parameters:
name
- the namevalue
- the value
NVPair
public NVPair(NVPair p)
- Creates a copy of a given name/value pair.
- Parameters:
p
- the name/value pair to copy
getName
public final String getName()
- Get the name.
- Returns:
- the name
getValue
public final String getValue()
- Get the value.
- Returns:
- the value
toString
public String toString()
- Produces a string containing the name and value of this instance.
- Overrides:
- toString in class Object
- Returns:
- a string containing the class name and the name and value