Increments by given step @param value the value to increment @param step the amount to increment @return the incremented value
(Object value, Number step)
| 759 | * @return the incremented value |
| 760 | */ |
| 761 | @SuppressWarnings("unchecked") |
| 762 | private Comparable increment(Object value, Number step) { |
| 763 | return (Comparable) plus((Number) value, step); |
| 764 | } |
| 765 | |
| 766 | /** |
| 767 | * Decrements by given step |