Skip to content

Commit

Permalink
Added a getEntryAt(int index) method
Browse files Browse the repository at this point in the history
  • Loading branch information
H. Marmanis committed Dec 20, 2012
1 parent e830bf3 commit bac8628
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/org/yooreeka/util/parsing/csv/CSVEntry.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ public CSVEntry(String csvLine, String sepChar) {
data = csvLine.split(getSeparator());
}

public String getEntryAt(int i) {
return data[i];
}

public String[] getData() {
return data;
}
Expand Down

0 comments on commit bac8628

Please sign in to comment.