Hi, I am trying to convert a string that contains nulls into Date format. The data is in csv so I have a main connection to the tJavaRow with the code: output_row.Date = input_row.Date.equals("")?null : parseDate("MM/dd/yyyy", input_row.Date) Error:
The method parseDate(String, String) is undefined for the type ......