mirror of
https://github.com/apache/commons-csv.git
synced 2025-02-18 16:11:47 +00:00
Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1301298 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3362f9c9d8
commit
d45289f384
@ -39,7 +39,7 @@ public class CSVFormat implements Serializable {
|
|||||||
private final boolean trailingSpacesIgnored;
|
private final boolean trailingSpacesIgnored;
|
||||||
private final boolean unicodeEscapesInterpreted;
|
private final boolean unicodeEscapesInterpreted;
|
||||||
private final boolean emptyLinesIgnored;
|
private final boolean emptyLinesIgnored;
|
||||||
private final String lineSeparator;
|
private final String lineSeparator; // for output
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -91,7 +91,7 @@ public class CSVFormat implements Serializable {
|
|||||||
* @param trailingSpacesIgnored <tt>true</tt> when trailing whitespaces should be ignored
|
* @param trailingSpacesIgnored <tt>true</tt> when trailing whitespaces should be ignored
|
||||||
* @param unicodeEscapesInterpreted <tt>true</tt> when unicode escapes should be interpreted
|
* @param unicodeEscapesInterpreted <tt>true</tt> when unicode escapes should be interpreted
|
||||||
* @param emptyLinesIgnored <tt>true</tt> when the parser should skip emtpy lines
|
* @param emptyLinesIgnored <tt>true</tt> when the parser should skip emtpy lines
|
||||||
* @param lineSeparator the line separator to use.
|
* @param lineSeparator the line separator to use for output
|
||||||
*/
|
*/
|
||||||
CSVFormat(
|
CSVFormat(
|
||||||
char delimiter,
|
char delimiter,
|
||||||
@ -399,4 +399,5 @@ public class CSVFormat implements Serializable {
|
|||||||
|
|
||||||
return out.toString().trim();
|
return out.toString().trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user