rapture.uri

AbsolutePath

abstract class AbsolutePath[+PathType <: AbsolutePath[PathType]] extends Path[PathType]

Represents an absolute (i.e. relative to a canonical base) path.

Self Type
AbsolutePath[PathType]
Linear Supertypes
Path[PathType], Link, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. AbsolutePath
  2. Path
  3. Link
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new AbsolutePath(elements: Seq[String], afterPath: AfterPath)

Abstract Value Members

  1. abstract def makePath(ascent: Int, elements: Seq[String], afterPath: AfterPath): PathType

    Constructs a new path

    Constructs a new path

    Definition Classes
    AbsolutePathPath

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Definition Classes
    AnyRef → Any
  3. def +[P <: Path[P]](dest: P): Path[_]

    Constructs a new path by following the relative link from this path

  4. def -[P <: AbsolutePath[P]](src: P)(implicit linkable: Linkable[P, PathType]): Result

  5. def /(p: String): PathType

    Constructs a new path by appending the specified path element to this path

    Constructs a new path by appending the specified path element to this path

    Definition Classes
    AbsolutePathPath
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  7. def absolute: Boolean

    This is an absolute path

    This is an absolute path

    Definition Classes
    AbsolutePathPathLink
  8. val afterPath: AfterPath

    Definition Classes
    Path
  9. def afterPathString: String

    Attributes
    protected
    Definition Classes
    Path
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. val ascent: Int

    The number of levels to navigate up the path hierarchy to reach the common parent

    The number of levels to navigate up the path hierarchy to reach the common parent

    Definition Classes
    Path
  12. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. def drop(n: Int): PathType

    Drops the specified number of path elements from the left of the path

  14. def dropRight(n: Int): PathType

    Drops the specified number of path elements from the right of the path

  15. val elements: Seq[String]

    The String components of this path

    The String components of this path

    Definition Classes
    Path
  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def equals(that: Any): Boolean

    Definition Classes
    Path → AnyRef → Any
  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  21. def head: String

    Returns the first element of the path, if it exists

  22. def init: PathType

    Returns all but the last element of the path

  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def isRoot: Boolean

    Returns true if this is a root path

  25. def last: String

    Returns the last element of the path, if it exists

  26. def link[P <: AbsolutePath[P]](dest: P)(implicit linkable: Linkable[PathType, P]): Result

  27. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  30. def parent: PathType

    Returns the parent path of this path; equivalent to tail

  31. def pathString: String

  32. def query[Q](q: Q)(implicit qt: QueryType[PathType, Q]): PathType

    Definition Classes
    Path
  33. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  34. def tail: PathType

    Returns all but the first element of the path

  35. def take(n: Int): PathType

    Drops all but the specified number of path elements from the left of the path

  36. def toString(): String

    Definition Classes
    AbsolutePathPath → AnyRef → Any
  37. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def /?[Q](q: Q)(implicit qt: QueryType[PathType, Q]): PathType

    Definition Classes
    Path
    Annotations
    @deprecated
    Deprecated

    (Since version 0.10.0) Use the query method instead.

Inherited from Path[PathType]

Inherited from Link

Inherited from AnyRef

Inherited from Any

Ungrouped