Class URIQueryParameter

  • All Implemented Interfaces:
    IDed<java.lang.String>, Named<java.lang.String>, Valued<java.lang.String>

    public class URIQueryParameter
    extends NameValuePair<java.lang.String,​java.lang.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 Detail

      • URIQueryParameter

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