Returns the type of this range's lower bound: BoundType#CLOSED if the range includes its lower endpoint, BoundType#OPEN if it does not. @throws IllegalStateException if this range is unbounded below (that is, #hasLowerBound() returns false)
()
| 402 | |
| 403 | |
| 404 | public BoundType lowerBoundType() { |
| 405 | return lowerBound.typeAsLowerBound(); |
| 406 | } |
| 407 | |
| 408 | /** |
| 409 | * Returns {@code true} if this range has an upper endpoint. |
no test coverage detected