org.http4s.util

UrlCodingUtils

object UrlCodingUtils extends UrlCodingUtils

Linear Supertypes
UrlCodingUtils, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. UrlCodingUtils
  2. UrlCodingUtils
  3. AnyRef
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def containsInvalidUriChars(string: String): Boolean

    Definition Classes
    UrlCodingUtils
  9. def ensureUppercasedEncodings(string: String): String

    Definition Classes
    UrlCodingUtils
  10. def ensureUrlEncoding(string: String): String

    Definition Classes
    UrlCodingUtils
  11. final def eq(arg0: AnyRef): Boolean

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

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

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

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

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

    Definition Classes
    Any
  17. def isUrlEncoded(string: String): Boolean

    Definition Classes
    UrlCodingUtils
  18. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. def needsUrlEncoding(string: String): Boolean

    Definition Classes
    UrlCodingUtils
  20. final def notify(): Unit

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

    Definition Classes
    AnyRef
  22. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  23. def toString(): String

    Definition Classes
    AnyRef → Any
  24. def urlDecode(toDecode: String, charset: java.nio.charset.Charset = Utf8, plusIsSpace: Boolean = false, toSkip: BitSet = BitSet.empty): String

    Percent-decodes a string.

    Percent-decodes a string.

    toDecode

    the string to decode

    charset

    the charset of percent-encoded characters

    plusIsSpace

    true if '+' is to be interpreted as a ' '

    toSkip

    a bitset of characters whose percent-encoded form is left percent-encoded. Almost certainly should be left empty.

    Definition Classes
    UrlCodingUtils
  25. def urlEncode(toEncode: String, charset: java.nio.charset.Charset = Utf8, spaceIsPlus: Boolean = false, toSkip: BitSet = toSkip): String

    Percent-encodes a string.

    Percent-encodes a string. Depending on the parameters, this method is appropriate for URI or URL form encoding. Any resulting percent-encodings are normalized to uppercase.

    toEncode

    the string to encode

    charset

    the charset to use for characters that are percent encoded

    spaceIsPlus

    if space is not skipped, determines whether it will be rendreed as a "+" or a percent-encoding according to charset.

    toSkip

    a bitset of characters exempt from encoding. In typical use, this is composed of all Unreserved URI characters and sometimes a subset of Reserved URI characters.

    Definition Classes
    UrlCodingUtils
  26. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from UrlCodingUtils

Inherited from AnyRef

Inherited from Any

Ungrouped