Class AbstractCsvBuilder<B>

    • Field Detail

      • divider

        protected char divider
      • quoteCharacter

        protected char quoteCharacter
      • escapeCharacter

        protected char escapeCharacter
      • skipComments

        protected boolean skipComments
      • skipEmptyLines

        protected boolean skipEmptyLines
      • bufferLength

        protected int bufferLength
    • Constructor Detail

      • AbstractCsvBuilder

        public AbstractCsvBuilder()
    • Method Detail

      • isSafeCharDelimiter

        protected static boolean isSafeCharDelimiter​(char c)
      • skipEmptyLines

        public B skipEmptyLines()
      • skipComments

        public B skipComments()
      • bufferLength

        public B bufferLength​(int length)
      • divider

        public B divider​(char c)
      • quoteCharacter

        public B quoteCharacter​(char c)
      • escapeCharacter

        public B escapeCharacter​(char c)
      • getEscapeCharacter

        public char getEscapeCharacter()
      • getQuoteCharacter

        public char getQuoteCharacter()
      • getDivider

        public char getDivider()
      • getBufferLength

        public int getBufferLength()