Packages

class URLBuilder extends AnyRef

Simple way of constructing URLs

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. URLBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. val fragment: Option[String]
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. lazy val location: String
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. val queryParameters: Option[String]
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String

    Builds a string representing the constructed URL

    Builds a string representing the constructed URL

    returns

    A string representation of the URL constructed by the current builder

    Definition Classes
    URLBuilder → AnyRef → Any
  20. def toURL: URL

    Builds the constructed URL

    Builds the constructed URL

    returns

    The URL constructed by the current builder

  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  24. def withFragment(newFragment: String): URLBuilder

    A new builder containing updating this builder's URL fragment with the given fragment

    A new builder containing updating this builder's URL fragment with the given fragment

    newFragment

    A new fragment

    returns

    A new builder with the fragment

  25. def withPathSegments(segments: String*): URLBuilder

    Adds given segments and returns a new builder with the added segments.

    Adds given segments and returns a new builder with the added segments. The segments can be separated by a slash (/) or represented as separate values in the given sequence of segments.

    segments

    Segments added to the builder

    returns

    A new builder created from the current one with added segments

  26. def withQueryParameters(params: (String, String)*): URLBuilder

    Adds given query parameters and returns a new builder with the added parameters.

    Adds given query parameters and returns a new builder with the added parameters.

    params

    Query string parameters added to the builder

    returns

    A new builder created from the current one with added query parameters

Inherited from AnyRef

Inherited from Any

Ungrouped