Packages

class String extends AnyRef

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

Instance Constructors

  1. 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. def abbreviate(maxWidth: Integer, offset: Integer): String
  5. def abbreviate(maxWidth: Integer): String
  6. def addError(msg: String, escape: Boolean): Unit
  7. def addError(msg: String): Unit
  8. def addError(msg: Exception, escape: Boolean): Unit
  9. def addError(msg: Exception): Unit
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def capitalize(): String
  12. def center(size: Integer, padStr: String): String
  13. def center(size: Integer): String
  14. def charAt(index: Integer): Integer
  15. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  16. def codePointAt(index: Integer): Integer
  17. def codePointBefore(index: Integer): Integer
  18. def codePointCount(beginIndex: Integer, endIndex: Integer): Integer
  19. def compareTo(str: String): Integer
  20. def contains(str: String): Boolean
  21. def containsAny(validChars: String): Boolean
  22. def containsIgnoreCase(searchStr: String): Boolean
  23. def containsNone(invalidChars: String): Boolean
  24. def containsOnly(validChars: String): Boolean
  25. def containsWhitespace(): Boolean
  26. def countMatches(searchStr: String): Integer
  27. def deleteWhitespace(): String
  28. def difference(other: String): String
  29. def endsWith(str: String): Boolean
  30. def endsWithIgnoreCase(suffix: String): Boolean
  31. final def eq(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  32. def equals(arg0: Any): scala.Boolean
    Definition Classes
    AnyRef → Any
  33. def equals$(other: Any): Boolean
  34. def equalsIgnoreCase(other: String): Boolean
  35. def escapeCsv(): String
  36. def escapeEcmaScript(): String
  37. def escapeHtml3(): String
  38. def escapeHtml4(): String
  39. def escapeJava(): String
  40. def escapeUnicode(): String
  41. def escapeXml(): String
  42. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  43. def getChars(): List[Integer]
  44. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  45. def getLevenshteinDistance(other: String, threshold: Integer): Integer
  46. def getLevenshteinDistance(other: String): Integer
  47. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  48. def hashCode$(): Integer
  49. def indexOf(str: String, startPos: Integer): Integer
  50. def indexOf(str: String): Integer
  51. def indexOfAny(searchChars: String): Integer
  52. def indexOfAnyBut(searchChars: String): Integer
  53. def indexOfChar(ch: Integer, fromIndex: Integer): Integer
  54. def indexOfChar(ch: Integer): Integer
  55. def indexOfDifference(other: String): Integer
  56. def indexOfIgnoreCase(searchStr: String, startPos: Integer): Integer
  57. def indexOfIgnoreCase(searchStr: String): Integer
  58. def isAllLowerCase(): Boolean
  59. def isAllUpperCase(): Boolean
  60. def isAlpha(): Boolean
  61. def isAlphaSpace(): Boolean
  62. def isAlphanumeric(): Boolean
  63. def isAlphanumericSpace(): Boolean
  64. def isAsciiPrintable(): Boolean
  65. final def isInstanceOf[T0]: scala.Boolean
    Definition Classes
    Any
  66. def isNumeric(): Boolean
  67. def isNumericSpace(): Boolean
  68. def isWhitespace(): Boolean
  69. def lastIndexOf(str: String): Integer
  70. def lastIndexOf(searchStr: String, startPos: Integer): Integer
  71. def lastIndexOfChar(ch: Integer, fromIndex: Integer): Integer
  72. def lastIndexOfChar(ch: Integer): Integer
  73. def lastIndexOfIgnoreCase(searchStr: String, startPos: Integer): Integer
  74. def lastIndexOfIgnoreCase(searchStr: String): Integer
  75. def left(len: Integer): String
  76. def leftPad(len: Integer, padStr: String): String
  77. def leftPad(len: Integer): String
  78. def length(): Integer
  79. def mid(pos: Integer, len: Integer): String
  80. final def ne(arg0: AnyRef): scala.Boolean
    Definition Classes
    AnyRef
  81. def normalizeSpace(): String
  82. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  83. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  84. def offsetByCodePoints(index: Integer, codePointOffset: Integer): Integer
  85. def overlay(overlay: String, start: Integer, end: Integer): String
  86. def remove(toRemove: String): String
  87. def removeEnd(toRemove: String): String
  88. def removeEndIgnoreCase(toRemove: String): String
  89. def removeStart(toRemove: String): String
  90. def removeStartIgnoreCase(toRemove: String): String
  91. def repeat(separator: String, numTimes: Integer): String
  92. def repeat(numTimes: Integer): String
  93. def replace(target: String, replacement: String): String
  94. def replaceAll(regex: String, replacement: String): String
  95. def replaceFirst(regex: String, replacement: String): String
  96. def reverse(): String
  97. def right(len: Integer): String
  98. def rightPad(len: Integer, padStr: String): String
  99. def rightPad(len: Integer): String
  100. def split(regex: String, limit: Integer): List[String]
  101. def split(regex: String): List[String]
  102. def splitByCharacterType(): List[String]
  103. def splitByCharacterTypeCamelCase(): List[String]
  104. def startsWith(str: String): Boolean
  105. def startsWithIgnoreCase(prefix: String): Boolean
  106. def stripHtmlTags(): String
  107. def substring(start: Integer, end: Integer): String
  108. def substring(start: Integer): String
  109. def substringAfter(separator: String): String
  110. def substringAfterLast(separator: String): String
  111. def substringBefore(separator: String): String
  112. def substringBeforeLast(separator: String): String
  113. def substringBetween(tag: String): String
  114. def substringBetween(open: String, close: String): String
  115. def swapCase(): String
  116. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  117. def toLowerCase(locale: String): String
  118. def toLowerCase(): String
  119. def toString(): java.lang.String
    Definition Classes
    AnyRef → Any
  120. def toUpperCase(locale: String): String
  121. def toUpperCase(): String
  122. def trim(): String
  123. def uncapitalize(): String
  124. def unescapeCsv(): String
  125. def unescapeEcmaScript(): String
  126. def unescapeHtml3(): String
  127. def unescapeHtml4(): String
  128. def unescapeJava(): String
  129. def unescapeUnicode(): String
  130. def unescapeXml(): String
  131. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  132. final def wait(arg0: scala.Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  133. final def wait(arg0: scala.Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped