object Uri extends Serializable
- Source
- Uri.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Uri
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- sealed case class Path(initialSlash: Boolean, trailingSlash: Boolean, segments: Seq[String]) extends Product with Serializable
- sealed case class Query(params: List[QueryParameter]) extends Product with Serializable
- sealed trait QueryParameter extends AnyRef
- sealed trait SingleOrFlagParameter extends QueryParameter
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##(): Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- val codec: Codec[Uri]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val hostPortCodec: Codec[HostPort]
- def http(host: String, port: Int, path: String): Uri
- def http(host: String, path: String): Uri
- def https(host: String, port: Int, path: String): Uri
- def https(host: String, path: String): Uri
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def parse(uriString: String): Attempt[Uri]
parse supplied string and receive Uri, if supplied string is valid *
- val pathQueryCodec: Codec[(Path, Query)]
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def ws(host: String, port: Int, path: String): Uri
- def ws(host: String, path: String): Uri
- def wss(host: String, port: Int, path: String): Uri
- def wss(host: String, path: String): Uri
- object Path extends Serializable
- object Query extends Serializable
- object QueryParameter