Interface CSVParser
-
- All Known Implementing Classes:
CSVWorker
public interface CSVParser
CSV parser. Not thread-safe.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<String>
parse(CharSequence str)
Parses the give string.
-
-
-
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.
-
-