Class URIQueryParameter

All Implemented Interfaces:
IDed<String>, Named<String>, Valued<String>

public class URIQueryParameter extends NameValuePair<String,String>
A URI query parameter name/value pair. The name cannot be null, but the value is allowed to be null indicating that no value should be provided for this parameter in the URI query.
Author:
Garret Wilson
  • Constructor Details

    • URIQueryParameter

      public URIQueryParameter(String name, String value)
      Constructor specifying the name and value.
      Parameters:
      name - The parameter name.
      value - The parameter value.
      Throws:
      NullPointerException - if the given name is null.