Interface CSVParser

  • All Known Implementing Classes:
    CSVWorker

    public interface CSVParser
    CSV parser. Not thread-safe.
    • Method Detail

      • parse

        List<String> parse​(CharSequence str)
        Parses the give string.
        Parameters:
        str - a string to parse; it must not contain the '\n' character.
        Returns:
        separated and undecorated items; an empty list if the given string is empty.