You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/main/java/org/springframework/batch/item/file/mapping/RecordFieldSetMapper.java
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -25,9 +25,9 @@
25
25
importorg.springframework.util.Assert;
26
26
27
27
/**
28
-
* This is a {@link FieldSetMapper} that supports Java records mapping.
29
-
* It uses the record's canonical constructor to map components with the
30
-
* same name as tokens in the {@link FieldSet}.
28
+
* This is a {@link FieldSetMapper} that supports Java records mapping
29
+
* (requires JKD 14 or higher). It uses the record's canonical constructor
30
+
* to map components with the same name as tokens in the {@link FieldSet}.
31
31
*
32
32
* @param <T> type of mapped items
33
33
* @author Mahmoud Ben Hassine
@@ -80,4 +80,4 @@ public T mapFieldSet(FieldSet fieldSet) {
Copy file name to clipboardExpand all lines: spring-batch-infrastructure/src/test/java/org/springframework/batch/item/file/mapping/RecordFieldSetMapperTests.java
0 commit comments