We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c2dba commit 5d43929Copy full SHA for 5d43929
1 file changed
src/main/java/org/apache/commons/csv/CSVRecord.java
@@ -28,6 +28,10 @@
28
29
/**
30
* A CSV record parsed from a CSV file.
31
+ *
32
+ * <p>The class implements {@link List} interface but does not allow
33
+ * modifications, i.e. all destructive operations (such as {@link List#add} or
34
+ * even {@link List#set}) throw {@link UnsupportedOperationException}.
35
*/
36
public final class CSVRecord extends AbstractList<String> implements Serializable {
37
0 commit comments