Searched defs:lowerBoundType (Results 1 - 10 of 10) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java110 public abstract Range<C> range(BoundType lowerBoundType, BoundType upperBoundType); argument
H A DSortedMultiset.java116 * {@code tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound,
119 SortedMultiset<E> subMultiset(E lowerBound, BoundType lowerBoundType, argument
H A DEmptyContiguousSet.java57 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { argument
H A DGeneralRange.java47 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN;
53 lowerBoundType, range.hasUpperBound(), upperEndpoint, upperBoundType);
94 private final BoundType lowerBoundType; field in class:GeneralRange
101 @Nullable T lowerEndpoint, BoundType lowerBoundType, boolean hasUpperBound,
107 this.lowerBoundType = checkNotNull(lowerBoundType);
123 checkArgument(lowerBoundType != OPEN | upperBoundType != OPEN);
151 return cmp < 0 | (cmp == 0 & lowerBoundType == OPEN);
177 BoundType lowType = lowerBoundType;
100 GeneralRange(Comparator<? super T> comparator, boolean hasLowerBound, @Nullable T lowerEndpoint, BoundType lowerBoundType, boolean hasUpperBound, @Nullable T upperEndpoint, BoundType upperBoundType) argument
[all...]
H A DRange.java151 public BoundType lowerBoundType() { method in class:Range
H A DImmutableSortedMultiset.java404 E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) {
405 return tailMultiset(lowerBound, lowerBoundType).headMultiset(upperBound, upperBoundType);
403 subMultiset( E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
H A DRegularContiguousSet.java148 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { argument
149 return Ranges.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain),
H A DMultisets.java267 E lowerBound, BoundType lowerBoundType,
270 lowerBound, lowerBoundType, upperBound, upperBoundType));
266 subMultiset( E lowerBound, BoundType lowerBoundType, E upperBound, BoundType upperBoundType) argument
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DEmptyContiguousSet.java55 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { argument
H A DRegularContiguousSet.java146 @Override public Range<C> range(BoundType lowerBoundType, BoundType upperBoundType) { argument
147 return Ranges.create(range.lowerBound.withLowerBoundType(lowerBoundType, domain),

Completed in 344 milliseconds