Searched refs:aboveAll (Results 1 – 5 of 5) sorted by relevance
72 if (that == aboveAll()) { in compareTo()178 static <C extends Comparable> Cut<C> aboveAll() { in aboveAll() method in Cut267 return (previous == null) ? Cut.<C>aboveAll() : new AboveValue<C>(previous); in withUpperBoundType()328 return (next == null) ? Cut.<C>aboveAll() : belowValue(next); in withUpperBoundType()349 return (next != null) ? belowValue(next) : Cut.<C>aboveAll(); in canonical()
274 return create(Cut.aboveValue(endpoint), Cut.<C>aboveAll()); in greaterThan()284 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll()); in atLeast()306 new Range<Comparable>(Cut.belowAll(), Cut.aboveAll());361 if (lowerBound.compareTo(upperBound) > 0 || lowerBound == Cut.<C>aboveAll() in Range()401 return upperBound != Cut.aboveAll(); in hasUpperBound()
490 || nextComplementRangeLowerBound == Cut.<C>aboveAll()) {499 negativeRange = Range.create(nextComplementRangeLowerBound, Cut.<C>aboveAll());500 nextComplementRangeLowerBound = Cut.aboveAll();519 : Cut.<C>aboveAll();527 cut = (positiveItr.peek().upperBound == Cut.<C>aboveAll()) 537 MoreObjects.firstNonNull(cut, Cut.<C>aboveAll());
226 upperBound = Cut.<C>aboveAll(); in get()
93 cutsToTest.add(Cut.<Integer>aboveAll()); in aboveAll() method