Packages

final class CIString extends Ordered[CIString] with Serializable

A case-insensitive String.

Two CI strings are equal if and only if they are the same length, and each corresponding character is equal after calling either toUpper or toLower.

Ordering is based on a string comparison after folding each character to uppercase and then back to lowercase.

All comparisons are insensitive to locales.

Source
CIString.scala
Linear Supertypes
Serializable, Ordered[CIString], Comparable[CIString], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CIString
  2. Serializable
  3. Ordered
  4. Comparable
  5. AnyRef
  6. 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. def <(that: CIString): Boolean
    Definition Classes
    Ordered
  4. def <=(that: CIString): Boolean
    Definition Classes
    Ordered
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def >(that: CIString): Boolean
    Definition Classes
    Ordered
  7. def >=(that: CIString): Boolean
    Definition Classes
    Ordered
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. def compare(that: CIString): Int
    Definition Classes
    CIString → Ordered
  11. def compareTo(that: CIString): Int
    Definition Classes
    Ordered → Comparable
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(that: Any): Boolean
    Definition Classes
    CIString → AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    CIString → AnyRef → Any
  17. def isEmpty: Boolean
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def length: Int
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. def nonEmpty: Boolean
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  25. val toString: String
    Definition Classes
    CIString → AnyRef → Any
  26. def transform(f: (String) => String): CIString
  27. def trim: CIString
  28. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Deprecated Value Members

  1. def value: String
    Annotations
    @deprecated
    Deprecated

    (Since version 0.1.0) Use toString

Inherited from Serializable

Inherited from Ordered[CIString]

Inherited from Comparable[CIString]

Inherited from AnyRef

Inherited from Any

Ungrouped