Fix formatting

This commit is contained in:
Gary Gregory 2022-09-12 09:34:15 -07:00 committed by GitHub
parent 9c702bd405
commit 882884f28a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -604,6 +604,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
public List<String> getHeaderNames() {
return Collections.unmodifiableList(headers.headerNames);
}
/**
* Checks whether there is a header comment.
* The header comment appears before the header record.
@ -619,6 +620,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
public boolean hasHeaderComment() {
return headerComment != null;
}
/**
* Returns the header comment, if any.
* The header comment appears before the header record.
@ -629,6 +631,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
public String getHeaderComment() {
return headerComment;
}
/**
* Checks whether there is a trailer comment.
* Trailer comments are located between the last record and EOF.
@ -641,6 +644,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
public boolean hasTrailerComment() {
return trailerComment != null;
}
/**
* Returns the trailer comment, if any.
* Trailer comments are located between the last record and EOF
@ -651,6 +655,7 @@ public final class CSVParser implements Iterable<CSVRecord>, Closeable {
public String getTrailerComment() {
return trailerComment;
}
/**
* Returns the current record number in the input stream.
*