Esempio n. 1
0
 /**
  * Sets the ignore leading whitespace setting - if true, white space in front of a quote in a
  * field is ignored.
  *
  * @param bIgnoreLeadingWhiteSpace if <code>true</code>, white space in front of a quote in a
  *     field is ignored
  * @return this
  */
 @Nonnull
 public CSVReader setIgnoreLeadingWhiteSpace(final boolean bIgnoreLeadingWhiteSpace) {
   m_aParser.setIgnoreLeadingWhiteSpace(bIgnoreLeadingWhiteSpace);
   return this;
 }