UrlPath

sealed trait UrlPath extends Path
Companion:
object
trait Path
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Type members

Types

type Self <: UrlPath

Value members

Abstract methods

def isSlashTerminated: Boolean
def nonEmptyRootless: Boolean
def withConfig(config: UriConfig): Self
def withParts(parts: Iterable[String]): UrlPath

Concrete methods

def addPart[P : PathPart](part: P): UrlPath
def addParts[P : TraversablePathParts](otherParts: P): UrlPath
def addParts[P : PathPart](first: P, second: P, otherParts: P*): UrlPath
def normalize(removeEmptyParts: Boolean, slashTermination: SlashTermination): UrlPath

Returns this path normalized according to RFC 3986

Returns this path normalized according to RFC 3986

def slashTerminated(slashTermination: SlashTermination): UrlPath

Inherited methods

def canEqual(that: Any): Boolean
Inherited from:
Equals
Inherited from:
Path
def isEmpty: Boolean
Inherited from:
Path
def nonEmpty: Boolean
Inherited from:
Path
def parts: Vector[String]
Inherited from:
Path
def productArity: Int
Inherited from:
Product
def productElement(n: Int): Any
Inherited from:
Product
def productElementName(n: Int): String
Inherited from:
Product
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def productPrefix: String
Inherited from:
Product
override def toString: String
Definition Classes
Path -> Any
Inherited from:
Path
def toStringRaw: String

Returns the path with no encoders taking place (e.g. non ASCII characters will not be percent encoded)

Returns the path with no encoders taking place (e.g. non ASCII characters will not be percent encoded)

Returns:

String containing the raw path for this Uri

Inherited from:
Path