Sets the pattern for {@link EntryInt} and {@link EntryDate} to * {@link java.text.DecimalFormat DecimalFormat} and {@link java.time.format.DateTimeFormatter DateTimeFormatter} * respectively.
* * @param pattern the pattern */ public EntryDate pattern(String pattern) { setPattern(pattern); return this; } /** * Sets the {@link Units unit} value to apply to calculations for {@link EntryDate}. * * @param unit the {@link Units unit} */ public EntryDate unit(Units unit) { setUnit(unit); return this; } /** * Sets the {@link EntryDate entry} up for deletion. */ public EntryDate delete() { setDelete(true); return this; } /** * The units available for {@link EntryDate} calculations. * *