object
UrlUtils
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
-
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
getFragmentIdentifier(url: String): Option[String]
-
def
getHost(url: String): String
-
def
getPath(url: String): String
-
def
getPort(url: String): Option[Int]
-
def
getQueryString(url: String): Option[String]
-
def
getScheme(url: String): String
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
This is a standard
URL
helper, it is not a standardURI
helper. http://en.wikipedia.org/wiki/Uniform_resource_locatorURI scheme
foo://username:[email protected]:8042/over/there/index.dtb?type=animal&name=narwhal#nose \_/ \_/ \_/ \/ \_/ \_/ \/ \/ | | | | | | | | | userinfo host port | | query fragment | \/\_||/ \/ \/ scheme | | | | | | name authority | | | | | | path | | interpretable as keys | | | | \_||/ \/ \_/ | | | | | | scheme hierarchical part | | interpretable as values name | | | path interpretable as filename | | _| | / \ / \ | urn:example:animal:ferret:nose interpretable as extension
path _| scheme / \ name userinfo hostname query _| _| | _|_ / \ / \ / \ / \ mailto:[email protected]?subject=Topic
(diagram from: http://en.wikipedia.org/wiki/URI_scheme#Examples)