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:
parent
adf5f834db
commit
720b341bf0
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue