public interface URI extends Cloneable
| Modifier and Type | Method and Description |
|---|---|
URI |
clone()
Returns a clone of this URI.
|
boolean |
equals(Object o)
Compares the given URI with this URI.
|
String |
getParameter(String key)
Returns the value of the named parameter, or null if it is not set.
|
Iterator<String> |
getParameterNames()
Returns an Iterator over the names of all parameters present in this URI.
|
String |
getScheme()
Returns the scheme of this URI, for example "sip", "sips" or "tel".
|
boolean |
isSipURI()
Returns true if the scheme is "sip" or "sips", false otherwise.
|
void |
removeParameter(String name)
Removes the named parameter from this URL.
|
void |
setParameter(String name,
String value)
Sets the value of the named parameter.
|
String |
toString()
Returns the value of this URI as a String.
|
URI clone()
boolean equals(Object o)
String getParameter(String key)
Iterator<String> getParameterNames()
String getScheme()
boolean isSipURI()
void removeParameter(String name)
void setParameter(String name, String value)
Copyright © 2016. All Rights Reserved.