Uses of Class
com.google.guava.labs.collect.InsertionPoint
Packages that use InsertionPoint
Package
Description
BinarySearch and some extra collectors for Guava (requires mug-guava artifact)
- 
Uses of InsertionPoint in com.google.guava.labs.collect
Classes in com.google.guava.labs.collect that implement interfaces with type arguments of type InsertionPointModifier and TypeClassDescriptionfinal classInsertionPoint<C extends Comparable<C>>Represents a result ofBinarySearch.Methods in com.google.guava.labs.collect that return InsertionPointModifier and TypeMethodDescriptionstatic InsertionPoint<Double> InsertionPoint.after(double floor) Returns an insertion point immediately afterfloor.static InsertionPoint<Integer> InsertionPoint.after(int floor) Returns an insertion point immediately after the givenfloorand before the next integer (ifceilingisn'tInteger.MAX_VALUE).static InsertionPoint<Long> InsertionPoint.after(long floor) Returns an insertion point immediately after the givenfloorand before the next integer (ifceilingisn'tLong.MAX_VALUE).static <C extends Comparable<C>>
InsertionPoint<C> InsertionPoint.after(C floor, DiscreteDomain<C> domain) Returns an insertion point immediately after the givenfloorand before the next element in the given discretedomain(if a next element exists).static <C extends Comparable<C>>
InsertionPoint<C> InsertionPoint.at(C element) Returns an insertion point exactly atelementsuch thatexact(),floorandceilingall return the same element.static InsertionPoint<Double> InsertionPoint.before(double ceiling) Returns an insertion point immediately beforeceiling.static InsertionPoint<Integer> InsertionPoint.before(int ceiling) Returns an insertion point immediately before the givenceilingand after the previous integer (ifceilingisn'tInteger.MIN_VALUE).static InsertionPoint<Long> InsertionPoint.before(long ceiling) Returns an insertion point immediately before the givenceilingand after the previous integer (ifceilingisn'tLong.MIN_VALUE).static <C extends Comparable<C>>
InsertionPoint<C> InsertionPoint.before(C ceiling, DiscreteDomain<C> domain) Returns an insertion point immediately before the givenceilingand after the previous element in the given discretedomain(if a previous element exists).static InsertionPoint<Double> InsertionPoint.between(double floor, double ceiling) Returns an insertion point in the open range of(floor, ceiling).abstract InsertionPoint<C> BinarySearch.Table.insertionPointAfter(K target) Finds the insertion point immediately after the last element that's less than or equal to the target.abstract InsertionPoint<C> BinarySearch.Table.insertionPointBefore(K target) Finds the insertion point immediately before the first element that's greater than or equal to the target.abstract InsertionPoint<C> BinarySearch.Table.insertionPointFor(K target) Finds theInsertionPointiftargetwere to be added in order.Methods in com.google.guava.labs.collect with parameters of type InsertionPoint