Searched refs:AboveValue (Results 1 – 1 of 1) sorted by relevance
81 this instanceof AboveValue, that instanceof AboveValue); in compareTo()258 return (previous == null) ? Cut.<C>belowAll() : new AboveValue<C>(previous); in withLowerBoundType()267 return (previous == null) ? Cut.<C>aboveAll() : new AboveValue<C>(previous); in withUpperBoundType()296 return new AboveValue<C>(endpoint); in aboveValue()299 private static final class AboveValue<C extends Comparable> extends Cut<C> { class in Cut300 AboveValue(C endpoint) { in AboveValue() method in Cut.AboveValue