Uses of Class
de.cuioss.tools.string.Splitter

Packages that use Splitter
Package
Description
 
  • Uses of Splitter in de.cuioss.tools.string

    Methods in de.cuioss.tools.string that return Splitter
    Modifier and Type
    Method
    Description
    Usually the separator will be pre-processed before being passed to String.split(String).
    Splitter.limit(int maxItems)
    Returns a splitter that behaves equivalently to this splitter but stops splitting after it reaches the limit.
    Splitter.omitEmptyStrings()
    Returns a splitter that behaves equivalently to this splitter, but automatically omits empty strings from the results.
    static Splitter
    Splitter.on(char separator)
    Returns a splitter that uses the given fixed string as a separator.
    static Splitter
    Splitter.on(String separator)
    Returns a splitter that uses the given fixed string as a separator.
    Splitter.trimResults()
    Returns a splitter that behaves equivalently to this splitter, but automatically removes leading and trailing whitespace from each returned substring.