Returns the lower endpoint of this range. @throws IllegalStateException if this range is unbounded below (that is, #hasLowerBound() returns false)
()
| 367 | * #hasLowerBound()} returns {@code false}) |
| 368 | */ |
| 369 | public C lowerEndpoint() { |
| 370 | return lowerBound.endpoint(); |
| 371 | } |
| 372 | |
| 373 | /** |
| 374 | * Returns the type of this range's lower bound: {@link BoundType#CLOSED} if the range includes |
no test coverage detected