Returns the upper endpoint of this range. @throws IllegalStateException if this range is unbounded above (that is, #hasUpperBound() returns false)
()
| 395 | * #hasUpperBound()} returns {@code false}) |
| 396 | */ |
| 397 | public C upperEndpoint() { |
| 398 | return upperBound.endpoint(); |
| 399 | } |
| 400 | |
| 401 | /** |
| 402 | * Returns the type of this range's upper bound: {@link BoundType#CLOSED} if the range includes |
no test coverage detected