Packages

object Path

Source
Uri.scala
Linear Supertypes
Content Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Path
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Segment(head: String, tail: SlashOrEmpty) extends Path with Product with Serializable
  2. final case class Slash(tail: Path) extends SlashOrEmpty with Product with Serializable
  3. sealed abstract class SlashOrEmpty extends Path

Value Members

  1. def /(segment: String): Path
  2. def /(path: Path): Path
  3. def /: Path
  4. val SingleSlash: Slash
  5. def apply(string: String, charset: Charset = UTF8): Path
  6. def unapply(uri: Uri): Option[String]
  7. def unapply(path: Path): Option[String]
  8. case object Empty extends SlashOrEmpty with Product with Serializable
  9. object ~