Here you can find the source of getDateCriteria(LocalDate startDate, LocalDate endDate)
private static String getDateCriteria(LocalDate startDate, LocalDate endDate)
//package com.java2s; //License from project: Apache License import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class Main { private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("\"yyyy-MM-dd\""); private static String getDateCriteria(LocalDate startDate, LocalDate endDate) { return "startDate = " + startDate.format(formatter) + " and endDate = " + endDate.format(formatter); }// w w w. ja va 2s . c o m }