Packages

case object Empty extends SlashOrEmpty with Product with Serializable

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Empty
  2. Serializable
  3. Product
  4. Equals
  5. SlashOrEmpty
  6. Path
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. type Head = Nothing
    Definition Classes
    EmptyPath

Value Members

  1. def +(pathString: String): Path
    Definition Classes
    Path
  2. def ++(suffix: Path): Path
    Definition Classes
    EmptyPath
  3. def /(segment: String): Path
    Definition Classes
    Path
  4. def ::(segment: String): Path
    Definition Classes
    EmptyPath
  5. def ::(c: Char): Path
    Definition Classes
    Path
  6. def ?/(segment: String): Path

    Appends two path segments while avoiding a double slash between them Example: - Path("abc") ?/ "def" returns Path("abc/def") - Path("abc/") ?/ "def" returns Path("abc/def")

    Appends two path segments while avoiding a double slash between them Example: - Path("abc") ?/ "def" returns Path("abc/def") - Path("abc/") ?/ "def" returns Path("abc/def")

    segment

    The path segment to be appended

    returns

    The final concatenated path segment

    Definition Classes
    Path
  7. def charCount: Int
    Definition Classes
    EmptyPath
  8. def dropChars(count: Int): Empty
    Definition Classes
    EmptyPath
  9. final def endsWith(suffix: String, ignoreTrailingSlash: Boolean = false): Boolean
    Definition Classes
    Path
  10. def endsWithSlash: Boolean
    Definition Classes
    Path
  11. def head: Head
    Definition Classes
    EmptyPath
  12. def isEmpty: Boolean
    Definition Classes
    EmptyPath
  13. def length: Int
    Definition Classes
    EmptyPath
  14. def productElementName(n: Int): String
    Definition Classes
    Product
  15. def productElementNames: Iterator[String]
    Definition Classes
    Product
  16. def reverse: Path
    Definition Classes
    Path
  17. def reverseAndPrependTo(prefix: Path): Path
    Definition Classes
    EmptyPath
  18. def startsWith(that: Path): Boolean
    Definition Classes
    EmptyPath
  19. def startsWithSegment: Boolean
    Definition Classes
    SlashOrEmptyPath
  20. def startsWithSlash: Boolean
    Definition Classes
    EmptyPath
  21. def tail: Path
    Definition Classes
    EmptyPath
  22. def toString(): String
    Definition Classes
    Path → AnyRef → Any