Class AbstractCsvBuilder<B>
- java.lang.Object
-
- com.github.skjolber.stcsv.builder.AbstractCsvBuilder<B>
-
- Direct Known Subclasses:
StringArrayCsvReaderBuilder
public abstract class AbstractCsvBuilder<B> extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected intbufferLengthprotected chardividerprotected charescapeCharacterprotected charquoteCharacterprotected booleanskipCommentsprotected booleanskipEmptyLines
-
Constructor Summary
Constructors Constructor Description AbstractCsvBuilder()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description BbufferLength(int length)Bdivider(char c)BescapeCharacter(char c)intgetBufferLength()chargetDivider()chargetEscapeCharacter()chargetQuoteCharacter()protected static booleanisSafeCharDelimiter(char c)BquoteCharacter(char c)BskipComments()BskipEmptyLines()
-
-
-
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()
-
-