Object

fm.common

ASCIIUtil

Related Doc: package common

Permalink

object ASCIIUtil

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ASCIIUtil
  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. val MaxASCIIChar: Char

    Permalink
  5. val MaxASCIICodePoint: Int

    Permalink
  6. val MaxASCIIExpandedLength: Int

    Permalink

    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:

    '⑽' => "(10)" // ⑽ [PARENTHESIZED NUMBER TEN] '⑾' => "(11)" // ⑾ [PARENTHESIZED NUMBER ELEVEN] '⑿' => "(12)" // ⑿ [PARENTHESIZED NUMBER TWELVE] '⒀' => "(13)" // ⒀ [PARENTHESIZED NUMBER THIRTEEN] '⒁' => "(14)" // ⒁ [PARENTHESIZED NUMBER FOURTEEN] '⒂' => "(15)" // ⒂ [PARENTHESIZED NUMBER FIFTEEN] '⒃' => "(16)" // ⒃ [PARENTHESIZED NUMBER SIXTEEN] '⒄' => "(17)" // ⒄ [PARENTHESIZED NUMBER SEVENTEEN] '⒅' => "(18)" // ⒅ [PARENTHESIZED NUMBER EIGHTEEN] '⒆' => "(19)" // ⒆ [PARENTHESIZED NUMBER NINETEEN] '⒇' => "(20)" // ⒇ [PARENTHESIZED NUMBER TWENTY]

  7. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  9. def convertToASCII(s: String): String

    Permalink

    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)

  10. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  14. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  17. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. def toASCIIChar(c: Char): Char

    Permalink

    Converts Accented Characters to the Non-Accented Equivalent Char.

    Converts Accented Characters to the Non-Accented Equivalent Char.

    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)

  20. def toASCIICharsOrNull(c: Char): String

    Permalink

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

  21. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  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. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped