I've got a start date as a string (yyyy-MM-dd) as a variable in a loop. This date should be increased based on another variable called "days diff" but in the Java Edit Variable node I continuesly receive "cannot be resolved to a type".
The approach postet in this topic give me the same as this apprach:
LocalDate sDate = LocalDate.parse(v_startDate);
// add one day
LocalDate eDate = sDate.plusDays(v_currentIteration);
out_currentDate = eDate;