Returns a range that contains all values strictly greater than {@code endpoint}. @since 14.0
(C endpoint)
| 242 | * @since 14.0 |
| 243 | */ |
| 244 | public static <C extends Comparable<?>> Range<C> greaterThan(C endpoint) { |
| 245 | return create(Cut.aboveValue(endpoint), Cut.aboveAll()); |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Returns a range that contains all values greater than or equal to {@code endpoint}. |