Trait

fm.common.rich

RichURIBase

Related Doc: package rich

Permalink

trait RichURIBase[T] extends Any

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RichURIBase
  2. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def fragment: Option[String]

    Permalink
  2. abstract def getClass(): Class[_]

    Permalink
    Definition Classes
    Any
  3. abstract def host: Option[String]

    Permalink
  4. abstract def make(s: String): T

    Permalink
    Attributes
    protected
  5. abstract def path: Option[String]

    Permalink
  6. abstract def port: Option[Int]

    Permalink
  7. abstract def query: Option[String]

    Permalink
  8. abstract def queryParams: QueryParams

    Permalink
  9. abstract def scheme: Option[String]

    Permalink
  10. abstract def self: T

    Permalink
    Attributes
    protected
  11. abstract def toURI: URI

    Permalink
    Attributes
    protected
  12. abstract def userInfo: Option[String]

    Permalink

Concrete Value Members

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

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

    Permalink
    Definition Classes
    Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  4. def addQueryParam(key: String, value: String): T

    Permalink
  5. def addQueryParams(other: QueryParams): T

    Permalink
  6. def addQueryParams(kvPairs: (String, String)*): T

    Permalink
  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def copy(scheme: Option[String] = scheme, userInfo: Option[String] = userInfo, host: Option[String] = host, port: Option[Int] = port, path: Option[String] = path, query: Option[String] = query, fragment: Option[String] = fragment): T

    Permalink
  9. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    Any
  10. def hashCode(): Int

    Permalink
    Definition Classes
    Any
  11. def isFile: Boolean

    Permalink

    Is this a file:// URI/URL?

  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def pathAndQueryURI: URI

    Permalink
  14. final def pathQueryAndFragmentURI: URI

    Permalink
  15. def removeQueryParam(key: String): T

    Permalink
  16. def removeQueryParams(keys: String*): T

    Permalink
  17. def toFile: File

    Permalink
  18. def toFileOption: Option[File]

    Permalink
  19. def toString(): String

    Permalink
    Definition Classes
    Any
  20. def updateQueryParam(key: String, value: String): T

    Permalink
  21. def updateQueryParams(kvPairs: (String, String)*): T

    Permalink
  22. def withHost(host: String): T

    Permalink
  23. def withPath(path: String): T

    Permalink
  24. def withQueryParam(kv: (String, String)): T

    Permalink

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

  25. def withQueryParam(key: String, value: String): T

    Permalink

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

  26. def withQueryParams(params: QueryParams): T

    Permalink

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

  27. def withQueryParams(params: (String, String)*): T

    Permalink

    Calls QueryParams.updated

    Calls QueryParams.updated

    If the key doesn't exist then add it, otherwise replace the first occurance of the key with the new value and remove any other values.

  28. def withScheme(scheme: String): T

    Permalink
  29. def withoutQueryParams: T

    Permalink

Inherited from Any

Ungrouped