Packages

final class _String extends Serializable with Comparable[_String] with CharSequence with Constable with ConstantDesc

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. _String
  2. ConstantDesc
  3. Constable
  4. CharSequence
  5. Comparable
  6. Serializable
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new _String(sb: StringBuilder)
  2. new _String(codePoints: Array[Int], offset: Int, count: Int)
  3. new _String(sb: StringBuffer)
  4. new _String(string: _String)
  5. new _String(start: Int, length: Int, data: Array[Char])
  6. new _String(data: Array[Char])
  7. new _String(data: Array[Char], start: Int, length: Int)
  8. new _String(data: Array[scala.Byte])
  9. new _String(data: Array[scala.Byte], encoding: Charset)
  10. new _String(data: Array[scala.Byte], encoding: _String)
  11. new _String(data: Array[scala.Byte], high: Int)
  12. new _String(data: Array[scala.Byte], start: Int, length: Int)
  13. new _String(data: Array[scala.Byte], start: Int, length: Int, encoding: _String)
  14. new _String(data: Array[scala.Byte], start: Int, length: Int, encoding: Charset)
  15. new _String(data: Array[scala.Byte], high: Int, start: Int, length: Int)
  16. new _String()

Value Members

  1. final def !=(arg0: Any): scala.Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): scala.Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. var cachedHashCode: Int
    Attributes
    protected
  6. def charAt(index: Int): Char
    Definition Classes
    _StringCharSequence
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  8. def codePointAt(index: Int): Int
  9. def codePointBefore(index: Int): Int
  10. def codePointCount(beginIndex: Int, endIndex: Int): Int
  11. def compareTo(string: _String): Int
    Definition Classes
    _StringComparable
  12. def compareToIgnoreCase(string: _String): Int
  13. def concat(string: _String): _String
  14. def contains(cs: CharSequence): scala.Boolean
  15. def contentEquals(cs: CharSequence): scala.Boolean
  16. def contentEquals(sb: StringBuffer): scala.Boolean
  17. var count: Int
    Attributes
    protected
  18. def endsWith(suffix: _String): scala.Boolean
  19. final def eq(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  20. def equals(obj: Any): scala.Boolean
    Definition Classes
    _String → AnyRef → Any
  21. def equalsIgnoreCase(string: _String): scala.Boolean
  22. def fastSplit(ch: Char, max: Int): Array[String]
  23. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def getBytes(encoding: Charset): Array[scala.Byte]
  25. def getBytes(encoding: _String): Array[scala.Byte]
  26. def getBytes(start: Int, _end: Int, data: Array[scala.Byte], _index: Int): Unit
    Annotations
    @Deprecated
  27. def getBytes(): Array[scala.Byte]
  28. def getChars(start: Int, end: Int, buffer: Array[Char], index: Int): Unit
  29. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. def hashCode(): Int
    Definition Classes
    _String → AnyRef → Any
  31. def indent(n: Int): String
  32. def indexOf(subString: _String, _start: Int): Int
  33. def indexOf(string: _String): Int
  34. def indexOf(c: Int): Int
  35. def indexOf(c: Int, _start: Int): Int
  36. def intern(): _String
  37. def isBlank(): scala.Boolean
  38. def isEmpty(): scala.Boolean
  39. final def isInstanceOf[T0]: scala.Boolean
    Definition Classes
    Any
  40. def lastIndexOf(subString: _String, _start: Int): Int
  41. def lastIndexOf(string: String): Int
  42. def lastIndexOf(c: Int, _start: Int): Int
  43. def lastIndexOf(c: Int): Int
  44. def length(): Int
    Definition Classes
    _StringCharSequence
  45. def matches(expr: _String): scala.Boolean
  46. final def ne(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  47. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  48. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  49. var offset: Int
    Attributes
    protected
  50. def offsetByCodePoints(index: Int, codePointOffset: Int): Int
  51. def regionMatches(ignoreCase: scala.Boolean, _thisStart: Int, string: _String, _start: Int, length: Int): scala.Boolean
  52. def regionMatches(thisStart: Int, string: _String, start: Int, length: Int): scala.Boolean
  53. def repeat(count: Int): String
  54. def replace(target: CharSequence, replacement: CharSequence): _String
  55. def replace(oldChar: Char, newChar: Char): _String
  56. def replaceAll(expr: _String, substitute: _String): _String
  57. def replaceFirst(expr: _String, substitute: _String): _String
  58. def split(expr: _String, max: Int): Array[String]
  59. def split(expr: _String): Array[String]
  60. def startsWith(prefix: _String): scala.Boolean
  61. def startsWith(prefix: _String, start: Int): scala.Boolean
  62. def strip(): String
  63. def stripIndent(): String
  64. def stripLeading(): String
  65. def stripTrailing(): String
  66. def subSequence(start: Int, end: Int): CharSequence
    Definition Classes
    _StringCharSequence
  67. def substring(start: Int, end: Int): _String
  68. def substring(start: Int): _String
  69. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  70. def toCharArray(): Array[Char]
  71. def toLowerCase(): _String
  72. def toLowerCase(locale: Locale): String
  73. def toString(): String
    Definition Classes
    _StringCharSequence → AnyRef → Any
  74. def toUpperCase(): _String
  75. def toUpperCase(locale: Locale): String
  76. def transform[R](f: Function[String, R]): R
  77. def translateEscapes(): String
  78. def trim(): _String
  79. var value: Array[Char]
    Attributes
    protected
  80. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  81. final def wait(arg0: scala.Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  82. final def wait(arg0: scala.Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from ConstantDesc

Inherited from Constable

Inherited from CharSequence

Inherited from Comparable[_String]

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped