Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-06-19 | csv-utils 0.0.6HEADv0.0.6master | ||
2023-06-19 | Add the default separator for builder and parser | ||
2023-06-19 | csv-utils 0.0.5v0.0.5 | ||
2023-06-19 | Add update-copyright.sh | ||
2023-06-19 | Add license-header.txt | ||
2023-06-19 | Update copyright | ||
2023-06-19 | Update copyright | ||
2023-06-19 | Add new exceptions | ||
2023-06-15 | csv-utils 0.0.4v0.0.4 | ||
2023-06-15 | Come back to the LGPLv3 license | ||
2023-06-15 | Rename LICENSE to COPYING | ||
2023-06-15 | Add new tests | ||
2023-06-15 | Add the new parse() method | ||
2023-06-15 | Add mappers to CSVParser | ||
They're used to map CSV fields with class fields. | |||
2023-06-15 | Change the name from parse() to parseAsMap() | ||
Next I'll add a new method parse(). | |||
2023-06-15 | Add checkDefaultConstructor() in CSVParser | ||
2023-06-15 | Add generics to CSVParser | ||
In this wway we can create a list of rows of the type defined by cls attribute. | |||
2023-06-15 | Make correction on CONTRIBUTE | ||
2023-06-15 | Organize imports | ||
2023-06-15 | Update copyright | ||
2023-06-15 | Rename CSVUtilsTest to CSVParserTest | ||
2023-06-15 | Indent some line in pom.xml | ||
2023-06-15 | Add site in pom.xml | ||
2023-06-15 | Change the version of Java compiler | ||
From 1.7 to 1.8. | |||
2023-06-15 | Indent some line in pom.xml | ||
2023-06-15 | Add method to change the CSVParser separator | ||
2023-06-15 | Correct the constructor of CSVParser | ||
2023-06-13 | Rename CSVUtils in CSVParser | ||
2023-06-13 | Update copyright | ||
2023-06-13 | Add buildAsInputStream() | ||
This method is used when you want to create an in-memory CSV and use that with some CSV parser. | |||
2023-06-13 | Add CSVBuilder | ||
2023-06-13 | Change the license from AGPLv3 to BSD 2-Clause | ||
2023-05-02 | csv-utils 0.0.3v0.0.3 | ||
2023-05-02 | Skip empty lines | ||
In case of empty lines (such as a newline at the end of file) will be skiped. The code works also for empty lines in the middle of the file. | |||
2023-05-02 | csv-utils 0.0.2v0.0.2 | ||
2023-05-02 | Remove line of code that checks if the row ends | ||
with a comma I removed the line because, the last columns can be empty. Splitting the string having a row like this: str1;str2; give us an array of strings like this: [0] => "str1" [1] => "str2" [2] => "" | |||
2023-05-02 | Add unit tests | ||
2022-05-10 | Add plugin to install sources | ||
2022-05-10 | Initial commitv0.0.1 | ||