Home
last modified time | relevance | path

Searched refs:AboveValue (Results 1 – 1 of 1) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
DCut.java81 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 Cut
300 AboveValue(C endpoint) { in AboveValue() method in Cut.AboveValue