419420421422423424425
/** * Create a generator for date values from low to high with the given * precision. */ public static Generator<Date> dates(Long low, Long high, TimeUnit precision) { return new DateGenerator(precision, low, high); }
420421422423424425426
/** * Create a generator for date values from low to high with the given * precision. */ public static Generator<Date> dates(Long low, Long high, TimeUnit precision) { return new DateGenerator(precision, low, high, DEFAULT_MAX_TRIES); }