public Function afterDate(String source, SimpleDateFormat format) {
return new DateTimeFunction(toCalendar(source, format), AFTER);
}
public Function randomDate(String startDate, String endDate, DateFormat format) {
return new DateTimeFunction(toCalendar(startDate, format), toCalendar(endDate, format));
}