136137138139140141142
public Function randomDate(String startDate, String endDate, DateFormat format) { return new DateTimeFunction(toCalendar(startDate, format), toCalendar(endDate, format)); } public Function regex(String regex) { return new RegexFunction(regex); }
126127128129130131132