Home | History | Annotate | Download | only in collect

Lines Matching refs:OPEN

20 import static com.google.common.collect.BoundType.OPEN;
47 BoundType lowerBoundType = range.hasLowerBound() ? range.lowerBoundType() : OPEN;
51 BoundType upperBoundType = range.hasUpperBound() ? range.upperBoundType() : OPEN;
60 return new GeneralRange<T>(comparator, false, null, OPEN, false, null, OPEN);
69 return new GeneralRange<T>(comparator, true, endpoint, boundType, false, null, OPEN);
78 return new GeneralRange<T>(comparator, false, null, OPEN, true, endpoint, boundType);
123 checkArgument(lowerBoundType != OPEN | upperBoundType != OPEN);
151 return cmp < 0 | (cmp == 0 & getLowerBoundType() == OPEN);
160 return cmp > 0 | (cmp == 0 & getUpperBoundType() == OPEN);
184 if (cmp < 0 || (cmp == 0 && other.getLowerBoundType() == OPEN)) {
200 if (cmp > 0 || (cmp == 0 && other.getUpperBoundType() == OPEN)) {
208 if (cmp > 0 || (cmp == 0 && lowType == OPEN && upType == OPEN)) {
211 lowType = OPEN;