Decrements by one @param value the value to decrement @return the decremented value
(Object value)
| 569 | * @return the decremented value |
| 570 | */ |
| 571 | protected Object decrement(Object value) { |
| 572 | return InvokerHelper.invokeMethod(value, "previous", null); |
| 573 | } |
| 574 | |
| 575 | /** |
| 576 | * if operand is a Character or a String with one character, return that character's int value. |