HomeSort by relevance Sort by last modified time
    Searched defs:belowValue (Results 1 - 2 of 2) sorted by null

  /external/guava/guava/src/com/google/common/collect/
Cut.java 59 * The canonical form is a BelowValue cut whenever possible, otherwise ABOVE_ALL, or
156 return Cut.<Comparable<?>>belowValue(domain.minValue());
228 static <C extends Comparable> Cut<C> belowValue(C endpoint) {
229 return new BelowValue<C>(endpoint);
232 private static final class BelowValue<C extends Comparable> extends Cut<C> {
233 BelowValue(C endpoint) {
310 return (next == null) ? Cut.<C>belowAll() : belowValue(next);
319 return (next == null) ? Cut.<C>aboveAll() : belowValue(next);
340 return (next != null) ? belowValue(next) : Cut.<C>aboveAll();
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 

Completed in 22 milliseconds