MutableSeriesString

MutableSeries extension for type String.

Value Params
instance

Private mutable instance.

Since

0.1.0

class Object
trait Matchable
class Any

Value members

Concrete methods

@targetName("plus")
def +(series: Series[String]): Series[String]
Since

0.1.0

@targetName("plus")
def +(s: String): Series[String]
Since

0.1.0

@targetName("plus")
def +[T](series: Series[T])(implicit evidence$2: ClassTag[T]): Series[String]
Since

0.1.0

@targetName("plusAssign")
def +=(series: Series[String]): Unit
Since

0.1.0

@targetName("plusAssign")
def +=(s: String): Unit
Since

0.1.0

@targetName("plusAssign")
def +=[T](series: Series[T])(implicit evidence$1: ClassTag[T]): Unit
Since

0.1.0

def compareIgnoreCase(s: String): Series[Boolean]
See also

String.compareToIgnoreCase

Since

0.1.0

def compareIgnoreCase(series: Series[String]): Series[Boolean]
See also

String.compareToIgnoreCase

Since

0.1.0

def contains(s: String): Series[Boolean]
See also

String.contains

Since

0.1.0

def endsWith(s: String): Series[Boolean]
See also

String.endsWith

Since

0.1.0

def hash: Series[Int]
See also

String.hashCode

Since

0.1.0

def indexOf(s: String): Series[Int]
See also

String.indexOf

Since

0.1.0

def isEmptyString: Series[Boolean]
Returns

True, if String is empty.

Since

0.1.0

def lastIndexOf(s: String): Series[Int]
See also

String.lastIndexOf

Since

0.1.0

def lengths: Series[Int]
See also

String.length

Since

0.1.0

def lower: Unit
See also

String.toLowerCase

Since

0.1.0

def matches(regex: String): Series[Boolean]
See also

String.matches

Since

0.1.0

def nonEmptyString: Series[Boolean]
Returns

True, if String is not empty.

Since

0.1.0

def replace(target: String, replacement: String): Unit
See also

String.replace

Since

0.1.0

def replaceAll(regex: String, replacement: String): Unit
See also

String.replaceAll

Since

0.1.0

def replaceFirst(regex: String, replacement: String): Unit
See also

String.replaceFirst

Since

0.1.0

def split(regex: String, limit: Int): Series[Array[String]]
See also

String.split

Since

0.1.0

def startsWith(s: String, beginIndex: Int): Series[Boolean]
See also

String.startsWith

Since

0.1.0

def substring(beginIndex: Int): Unit
Returns

Sub string or empty string if out of bounds.

See also

String.substring

Since

0.1.0

def substring(beginIndex: Int, endIndex: Int): Unit
Returns

Sub string or empty string if out of bounds.

See also

String.substring

Since

0.1.0

def toBoolean: Series[Boolean]
Returns

Parsed Boolean Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Boolean.

Since

0.1.0

def toDouble: Series[Double]
Returns

Parsed Double Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Double.

Since

0.1.0

def toFloat: Series[Float]
Returns

Parsed Float Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Float.

Since

0.1.0

def toInt: Series[Int]
Returns

Parsed Int Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Int.

Since

0.1.0

def toLocalDate: Series[LocalDate]
Returns

Parsed LocalDate Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalDate

Since

0.1.0

def toLocalDateTime: Series[LocalDateTime]
Returns

Parsed LocalDateTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalDateTime

Since

0.1.0

def toLocalTime: Series[LocalTime]
Returns

Parsed LocalTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.LocalTime

Since

0.1.0

def toLong: Series[Long]
Returns

Parsed Long Series.

Throws
java.lang.NumberFormatException

If the string does not contain a parsable Long.

Since

0.1.0

def toZonedDateTime: Series[ZonedDateTime]
Returns

Parsed ZonedDateTime Series.

Throws
java.time.format.DateTimeParseException

If the string cannot be parsed.

See also

java.time.ZonedDateTime

Since

0.1.0

def trimString: Unit
See also

String.trim

Since

0.1.0

def upper: Unit
See also

String.toUpperCase

Since

0.1.0