Version 0.9.7

This commit is contained in:
Erik C. Thauvin 2024-08-30 14:42:49 -07:00
parent ade7898516
commit 791db7f890
Signed by: erik
GPG key ID: 776702A6A2DA330E
5 changed files with 23 additions and 23 deletions

View file

@ -32,6 +32,16 @@ public class EntryInt extends EntryBase<EntryInt> {
super(key);
}
/**
* Sets the {@link java.text.DecimalFormat DecimalFormat} pattern.
*
* @param pattern the pattern
*/
public EntryInt pattern(String pattern) {
super.pattern(pattern);
return this;
}
/**
* Sets the new {@link java.util.Properties property} value to an integer.
*
@ -42,14 +52,4 @@ public class EntryInt extends EntryBase<EntryInt> {
newValue(i);
return this;
}
/**
* Sets the {@link java.text.DecimalFormat DecimalFormat} pattern.
*
* @param pattern the pattern
*/
public EntryInt pattern(String pattern) {
super.pattern(pattern);
return this;
}
}