Packages

o

stringutils

ASCIIFolding

object ASCIIFolding

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

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. val MaxASCIIExpandedLength: Int

    The maximum number of ASCII characters a single Unicode character will expand to

    The maximum number of ASCII characters a single Unicode character will expand to

    All examples that expands to 4 characters:

    '\u247D' => "(10)" // ⑽ [PARENTHESIZED NUMBER TEN] '\u247E' => "(11)" // ⑾ [PARENTHESIZED NUMBER ELEVEN] '\u247F' => "(12)" // ⑿ [PARENTHESIZED NUMBER TWELVE] '\u2480' => "(13)" // ⒀ [PARENTHESIZED NUMBER THIRTEEN] '\u2481' => "(14)" // ⒁ [PARENTHESIZED NUMBER FOURTEEN] '\u2482' => "(15)" // ⒂ [PARENTHESIZED NUMBER FIFTEEN] '\u2483' => "(16)" // ⒃ [PARENTHESIZED NUMBER SIXTEEN] '\u2484' => "(17)" // ⒄ [PARENTHESIZED NUMBER SEVENTEEN] '\u2485' => "(18)" // ⒅ [PARENTHESIZED NUMBER EIGHTEEN] '\u2486' => "(19)" // ⒆ [PARENTHESIZED NUMBER NINETEEN] '\u2487' => "(20)" // ⒇ [PARENTHESIZED NUMBER TWENTY]

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  10. def fold(s: String): String

    Converts Accented Characters to the Non-Accented Equivalent String.

    Converts Accented Characters to the Non-Accented Equivalent String.

    Note: This expands stuff like Æ to AE)

  11. def fold(c: Char): String

    Converts Accented Characters to a Non-Accented Equivalent String or returns back the original Char as a String if no mapping available.

  12. def foldAsChar(c: Char): Char

    Converts Accented Characters to a Non-Accented Equivalent Char or returns back the original Char if no mapping available.

    Converts Accented Characters to a Non-Accented Equivalent Char or returns back the original Char if no mapping available.

    Note: This only works for when there is a 1 to 1 Character equivalence (i.e. it does not work for stuff like Æ which needs to expand to AE)

  13. def get(c: Char): Option[String]

    Converts Accented Characters to the Non-Accented Equivalent String (or None if already ASCII or no conversionn exists).

  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. def getOrNull(c: Char): String

    Converts Accented Characters to the Non-Accented Equivalent String (or null if already ASCII or no conversion exists).

  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  22. def toString(): String
    Definition Classes
    AnyRef → Any
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped