CSV-90 CSVFormat isEscaping/isEncapsulating are not public

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1327754 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-04-19 00:23:51 +00:00
parent adf5f834db
commit 720b341bf0
1 changed files with 12 additions and 2 deletions

View File

@ -248,7 +248,12 @@ public class CSVFormat implements Serializable {
return new CSVFormat(delimiter, encapsulator, commentStart, escape, surroundingSpacesIgnored, emptyLinesIgnored, lineSeparator, header);
}
boolean isEncapsulating() {
/**
* Returns whether an encapsulator has been defined.
*
* @return {@code true} if an encapsulator is defined
*/
public boolean isEncapsulating() {
return isEncapsulating;
}
@ -315,7 +320,12 @@ public class CSVFormat implements Serializable {
return new CSVFormat(delimiter, encapsulator, commentStart, escape, surroundingSpacesIgnored, emptyLinesIgnored, lineSeparator, header);
}
boolean isEscaping() {
/**
* Returns whether escape are being processed.
*
* @return {@code true} if escapes are processed
*/
public boolean isEscaping() {
return isEscaping;
}