Increments by one @param value the value to increment @return the incremented value
(Object value)
| 559 | * @return the incremented value |
| 560 | */ |
| 561 | protected Object increment(Object value) { |
| 562 | return InvokerHelper.invokeMethod(value, "next", null); |
| 563 | } |
| 564 | |
| 565 | /** |
| 566 | * Decrements by one |