Class/Object

org.f100ded.scalaurlbuilder

URLBuilder

Related Docs: object URLBuilder | package scalaurlbuilder

Permalink

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. val fragment: Option[String]

    Permalink
  10. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. lazy val location: String

    Permalink
  14. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  17. val queryParameters: Option[String]

    Permalink
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toString(): String

    Permalink

    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

    Permalink

    Builds the constructed URL

    Builds the constructed URL

    returns

    The URL constructed by the current builder

  21. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. def withFragment(newFragment: String): URLBuilder

    Permalink

    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

    Permalink

    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

    Permalink

    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