Class CsvLineParser


  • public class CsvLineParser
    extends java.lang.Object
    a CSV line, with all the normal CSV features.
    • Constructor Summary

      Constructors 
      Constructor Description
      CsvLineParser()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.List<java.lang.String> parse​(java.lang.CharSequence line)
      Use the current lineParser implementation to return a CSV line as a List of cells.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CsvLineParser

        public CsvLineParser()
    • Method Detail

      • parse

        public java.util.List<java.lang.String> parse​(java.lang.CharSequence line)
        Use the current lineParser implementation to return a CSV line as a List of cells. (Strings).