{@inheritDoc}
()
| 336 | * {@inheritDoc} |
| 337 | */ |
| 338 | @Override |
| 339 | public Integer getFrom() { |
| 340 | if (from <= to) { |
| 341 | return (inclusiveLeft == null || inclusiveLeft) ? from : from + 1; |
| 342 | } |
| 343 | return (inclusiveRight == null || inclusiveRight) ? to : to + 1; |
| 344 | } |
| 345 | |
| 346 | /** |
| 347 | * {@inheritDoc} |
no outgoing calls
no test coverage detected