Skip to content
Snippets Groups Projects
Commit 3ac79a4d authored by Georg Graßnick's avatar Georg Graßnick :thinking:
Browse files

Merge branch 'bug/javadoc_T_CsvParser-48' into 'master'

Document generic type T in CsvParser class

See merge request !32
parents fc07d403 0dd9bcdc
No related branches found
No related tags found
1 merge request!32Document generic type T in CsvParser class
......@@ -56,8 +56,9 @@ public final class CsvParser {
/**
* Chooses the right parsing algorithm.
* Casting in this method is not guaranteed to be safe, use at your own risk.
* @param csvType CsvType
* @param csvOrientation CsvOrientation
* @param csvType CsvType The type of the data set contained by the CSV file.
* @param csvOrientation CsvOrientation Indicates the orientation of the CSV file (either {@link CsvOrientation#HORIZONTAL} or {@link CsvOrientation#VERTICAL})
* @param <T> The type of the generated {@link PointListContainer}
* @return PointListList
*/
@SuppressWarnings("unchecked")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment