We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Creating a CSV with two columns
CSV csv = new CSV(); csv.addColumn("President"); csv.addColumn("Party");
Reordering columns. The following example moves the column "Party" from index 1 to index 0
csv.getMetaData().moveColumn(1,0);
Removes the first column (President).
csv.getMetaData().removeColumn(0);