Here you can find the source of converterToLocalDate(final String date)
public static LocalDate converterToLocalDate(final String date)
//package com.java2s; //License from project: Open Source License import java.time.LocalDate; public class Main { public static LocalDate converterToLocalDate(final String date) { return LocalDate.parse(date); }// ww w. j a va 2s.com }