Home | History | Annotate | Download | only in collect

Lines Matching full:aboveall

72     if (that == aboveAll()) {
178 static <C extends Comparable> Cut<C> aboveAll() {
179 return (Cut<C>) AboveAll.INSTANCE;
182 private static final class AboveAll extends Cut<Comparable<?>> {
183 private static final AboveAll INSTANCE = new AboveAll();
185 private AboveAll() {
267 return (previous == null) ? Cut.<C>aboveAll() : new AboveValue<C>(previous);
328 return (next == null) ? Cut.<C>aboveAll() : belowValue(next);
349 return (next != null) ? belowValue(next) : Cut.<C>aboveAll();