MCPcopy
hub / github.com/google/guava / greaterThan

Method greaterThan

guava/src/com/google/common/collect/Range.java:244–246  ·  view source on GitHub ↗

Returns a range that contains all values strictly greater than {@code endpoint}. @since 14.0

(C endpoint)

Source from the content-addressed store, hash-verified

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}.

Calls 3

createMethod · 0.95
aboveValueMethod · 0.95
aboveAllMethod · 0.95