001/* 002 * Copyright (C) 2008 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017package com.google.common.collect; 018 019import static com.google.common.base.Preconditions.checkNotNull; 020 021import com.google.common.annotations.GwtCompatible; 022import com.google.common.base.Equivalence; 023import com.google.common.base.Function; 024import com.google.common.base.Predicate; 025 026import java.io.Serializable; 027import java.util.Comparator; 028import java.util.Iterator; 029import java.util.NoSuchElementException; 030import java.util.SortedSet; 031 032import javax.annotation.Nullable; 033 034/** 035 * A range (or "interval") defines the <i>boundaries</i> around a contiguous span of values of some 036 * {@code Comparable} type; for example, "integers from 1 to 100 inclusive." Note that it is not 037 * possible to <i>iterate</i> over these contained values. To do so, pass this range instance and 038 * an appropriate {@link DiscreteDomain} to {@link ContiguousSet#create}. 039 * 040 * <h3>Types of ranges</h3> 041 * 042 * <p>Each end of the range may be bounded or unbounded. If bounded, there is an associated 043 * <i>endpoint</i> value, and the range is considered to be either <i>open</i> (does not include the 044 * endpoint) or <i>closed</i> (includes the endpoint) on that side. With three possibilities on each 045 * side, this yields nine basic types of ranges, enumerated below. (Notation: a square bracket 046 * ({@code [ ]}) indicates that the range is closed on that side; a parenthesis ({@code ( )}) means 047 * it is either open or unbounded. The construct {@code {x | statement}} is read "the set of all 048 * <i>x</i> such that <i>statement</i>.") 049 * 050 * <blockquote><table> 051 * <tr><td><b>Notation</b> <td><b>Definition</b> <td><b>Factory method</b> 052 * <tr><td>{@code (a..b)} <td>{@code {x | a < x < b}} <td>{@link Range#open open} 053 * <tr><td>{@code [a..b]} <td>{@code {x | a <= x <= b}}<td>{@link Range#closed closed} 054 * <tr><td>{@code (a..b]} <td>{@code {x | a < x <= b}} <td>{@link Range#openClosed openClosed} 055 * <tr><td>{@code [a..b)} <td>{@code {x | a <= x < b}} <td>{@link Range#closedOpen closedOpen} 056 * <tr><td>{@code (a..+∞)} <td>{@code {x | x > a}} <td>{@link Range#greaterThan greaterThan} 057 * <tr><td>{@code [a..+∞)} <td>{@code {x | x >= a}} <td>{@link Range#atLeast atLeast} 058 * <tr><td>{@code (-∞..b)} <td>{@code {x | x < b}} <td>{@link Range#lessThan lessThan} 059 * <tr><td>{@code (-∞..b]} <td>{@code {x | x <= b}} <td>{@link Range#atMost atMost} 060 * <tr><td>{@code (-∞..+∞)}<td>{@code {x}} <td>{@link Range#all all} 061 * </table></blockquote> 062 * 063 * <p>When both endpoints exist, the upper endpoint may not be less than the lower. The endpoints 064 * may be equal only if at least one of the bounds is closed: 065 * 066 * <ul> 067 * <li>{@code [a..a]} : a singleton range 068 * <li>{@code [a..a); (a..a]} : {@linkplain #isEmpty empty} ranges; also valid 069 * <li>{@code (a..a)} : <b>invalid</b>; an exception will be thrown 070 * </ul> 071 * 072 * <h3>Warnings</h3> 073 * 074 * <ul> 075 * <li>Use immutable value types only, if at all possible. If you must use a mutable type, <b>do 076 * not</b> allow the endpoint instances to mutate after the range is created! 077 * <li>Your value type's comparison method should be {@linkplain Comparable consistent with equals} 078 * if at all possible. Otherwise, be aware that concepts used throughout this documentation such 079 * as "equal", "same", "unique" and so on actually refer to whether {@link Comparable#compareTo 080 * compareTo} returns zero, not whether {@link Object#equals equals} returns {@code true}. 081 * <li>A class which implements {@code Comparable<UnrelatedType>} is very broken, and will cause 082 * undefined horrible things to happen in {@code Range}. For now, the Range API does not prevent 083 * its use, because this would also rule out all ungenerified (pre-JDK1.5) data types. <b>This 084 * may change in the future.</b> 085 * </ul> 086 * 087 * <h3>Other notes</h3> 088 * 089 * <ul> 090 * <li>Instances of this type are obtained using the static factory methods in this class. 091 * <li>Ranges are <i>convex</i>: whenever two values are contained, all values in between them must 092 * also be contained. More formally, for any {@code c1 <= c2 <= c3} of type {@code C}, {@code 093 * r.contains(c1) && r.contains(c3)} implies {@code r.contains(c2)}). This means that a {@code 094 * Range<Integer>} can never be used to represent, say, "all <i>prime</i> numbers from 1 to 095 * 100." 096 * <li>When evaluated as a {@link Predicate}, a range yields the same result as invoking {@link 097 * #contains}. 098 * <li>Terminology note: a range {@code a} is said to be the <i>maximal</i> range having property 099 * <i>P</i> if, for all ranges {@code b} also having property <i>P</i>, {@code a.encloses(b)}. 100 * Likewise, {@code a} is <i>minimal</i> when {@code b.encloses(a)} for all {@code b} having 101 * property <i>P</i>. See, for example, the definition of {@link #intersection intersection}. 102 * </ul> 103 * 104 * <h3>Further reading</h3> 105 * 106 * <p>See the Guava User Guide article on 107 * <a href="https://github.com/google/guava/wiki/RangesExplained">{@code Range}</a>. 108 * 109 * @author Kevin Bourrillion 110 * @author Gregory Kick 111 * @since 10.0 112 */ 113@GwtCompatible 114@SuppressWarnings("rawtypes") 115public final class Range<C extends Comparable> implements Predicate<C>, Serializable { 116 117 private static final Function<Range, Cut> LOWER_BOUND_FN = new Function<Range, Cut>() { 118 @Override 119 public Cut apply(Range range) { 120 return range.lowerBound; 121 } 122 }; 123 124 @SuppressWarnings("unchecked") 125 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> lowerBoundFn() { 126 return (Function) LOWER_BOUND_FN; 127 } 128 129 private static final Function<Range, Cut> UPPER_BOUND_FN = new Function<Range, Cut>() { 130 @Override 131 public Cut apply(Range range) { 132 return range.upperBound; 133 } 134 }; 135 136 @SuppressWarnings("unchecked") 137 static <C extends Comparable<?>> Function<Range<C>, Cut<C>> upperBoundFn() { 138 return (Function) UPPER_BOUND_FN; 139 } 140 141 static final Ordering<Range<?>> RANGE_LEX_ORDERING = new RangeLexOrdering(); 142 143 static <C extends Comparable<?>> Range<C> create( 144 Cut<C> lowerBound, Cut<C> upperBound) { 145 return new Range<C>(lowerBound, upperBound); 146 } 147 148 /** 149 * Returns a range that contains all values strictly greater than {@code 150 * lower} and strictly less than {@code upper}. 151 * 152 * @throws IllegalArgumentException if {@code lower} is greater than <i>or 153 * equal to</i> {@code upper} 154 * @since 14.0 155 */ 156 public static <C extends Comparable<?>> Range<C> open(C lower, C upper) { 157 return create(Cut.aboveValue(lower), Cut.belowValue(upper)); 158 } 159 160 /** 161 * Returns a range that contains all values greater than or equal to 162 * {@code lower} and less than or equal to {@code upper}. 163 * 164 * @throws IllegalArgumentException if {@code lower} is greater than {@code 165 * upper} 166 * @since 14.0 167 */ 168 public static <C extends Comparable<?>> Range<C> closed(C lower, C upper) { 169 return create(Cut.belowValue(lower), Cut.aboveValue(upper)); 170 } 171 172 /** 173 * Returns a range that contains all values greater than or equal to 174 * {@code lower} and strictly less than {@code upper}. 175 * 176 * @throws IllegalArgumentException if {@code lower} is greater than {@code 177 * upper} 178 * @since 14.0 179 */ 180 public static <C extends Comparable<?>> Range<C> closedOpen( 181 C lower, C upper) { 182 return create(Cut.belowValue(lower), Cut.belowValue(upper)); 183 } 184 185 /** 186 * Returns a range that contains all values strictly greater than {@code 187 * lower} and less than or equal to {@code upper}. 188 * 189 * @throws IllegalArgumentException if {@code lower} is greater than {@code 190 * upper} 191 * @since 14.0 192 */ 193 public static <C extends Comparable<?>> Range<C> openClosed( 194 C lower, C upper) { 195 return create(Cut.aboveValue(lower), Cut.aboveValue(upper)); 196 } 197 198 /** 199 * Returns a range that contains any value from {@code lower} to {@code 200 * upper}, where each endpoint may be either inclusive (closed) or exclusive 201 * (open). 202 * 203 * @throws IllegalArgumentException if {@code lower} is greater than {@code 204 * upper} 205 * @since 14.0 206 */ 207 public static <C extends Comparable<?>> Range<C> range( 208 C lower, BoundType lowerType, C upper, BoundType upperType) { 209 checkNotNull(lowerType); 210 checkNotNull(upperType); 211 212 Cut<C> lowerBound = (lowerType == BoundType.OPEN) 213 ? Cut.aboveValue(lower) 214 : Cut.belowValue(lower); 215 Cut<C> upperBound = (upperType == BoundType.OPEN) 216 ? Cut.belowValue(upper) 217 : Cut.aboveValue(upper); 218 return create(lowerBound, upperBound); 219 } 220 221 /** 222 * Returns a range that contains all values strictly less than {@code 223 * endpoint}. 224 * 225 * @since 14.0 226 */ 227 public static <C extends Comparable<?>> Range<C> lessThan(C endpoint) { 228 return create(Cut.<C>belowAll(), Cut.belowValue(endpoint)); 229 } 230 231 /** 232 * Returns a range that contains all values less than or equal to 233 * {@code endpoint}. 234 * 235 * @since 14.0 236 */ 237 public static <C extends Comparable<?>> Range<C> atMost(C endpoint) { 238 return create(Cut.<C>belowAll(), Cut.aboveValue(endpoint)); 239 } 240 241 /** 242 * Returns a range with no lower bound up to the given endpoint, which may be 243 * either inclusive (closed) or exclusive (open). 244 * 245 * @since 14.0 246 */ 247 public static <C extends Comparable<?>> Range<C> upTo( 248 C endpoint, BoundType boundType) { 249 switch (boundType) { 250 case OPEN: 251 return lessThan(endpoint); 252 case CLOSED: 253 return atMost(endpoint); 254 default: 255 throw new AssertionError(); 256 } 257 } 258 259 /** 260 * Returns a range that contains all values strictly greater than {@code 261 * endpoint}. 262 * 263 * @since 14.0 264 */ 265 public static <C extends Comparable<?>> Range<C> greaterThan(C endpoint) { 266 return create(Cut.aboveValue(endpoint), Cut.<C>aboveAll()); 267 } 268 269 /** 270 * Returns a range that contains all values greater than or equal to 271 * {@code endpoint}. 272 * 273 * @since 14.0 274 */ 275 public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) { 276 return create(Cut.belowValue(endpoint), Cut.<C>aboveAll()); 277 } 278 279 /** 280 * Returns a range from the given endpoint, which may be either inclusive 281 * (closed) or exclusive (open), with no upper bound. 282 * 283 * @since 14.0 284 */ 285 public static <C extends Comparable<?>> Range<C> downTo( 286 C endpoint, BoundType boundType) { 287 switch (boundType) { 288 case OPEN: 289 return greaterThan(endpoint); 290 case CLOSED: 291 return atLeast(endpoint); 292 default: 293 throw new AssertionError(); 294 } 295 } 296 297 private static final Range<Comparable> ALL = 298 new Range<Comparable>(Cut.belowAll(), Cut.aboveAll()); 299 300 /** 301 * Returns a range that contains every value of type {@code C}. 302 * 303 * @since 14.0 304 */ 305 @SuppressWarnings("unchecked") 306 public static <C extends Comparable<?>> Range<C> all() { 307 return (Range) ALL; 308 } 309 310 /** 311 * Returns a range that {@linkplain Range#contains(Comparable) contains} only 312 * the given value. The returned range is {@linkplain BoundType#CLOSED closed} 313 * on both ends. 314 * 315 * @since 14.0 316 */ 317 public static <C extends Comparable<?>> Range<C> singleton(C value) { 318 return closed(value, value); 319 } 320 321 /** 322 * Returns the minimal range that 323 * {@linkplain Range#contains(Comparable) contains} all of the given values. 324 * The returned range is {@linkplain BoundType#CLOSED closed} on both ends. 325 * 326 * @throws ClassCastException if the parameters are not <i>mutually 327 * comparable</i> 328 * @throws NoSuchElementException if {@code values} is empty 329 * @throws NullPointerException if any of {@code values} is null 330 * @since 14.0 331 */ 332 public static <C extends Comparable<?>> Range<C> encloseAll( 333 Iterable<C> values) { 334 checkNotNull(values); 335 if (values instanceof ContiguousSet) { 336 return ((ContiguousSet<C>) values).range(); 337 } 338 Iterator<C> valueIterator = values.iterator(); 339 C min = checkNotNull(valueIterator.next()); 340 C max = min; 341 while (valueIterator.hasNext()) { 342 C value = checkNotNull(valueIterator.next()); 343 min = Ordering.natural().min(min, value); 344 max = Ordering.natural().max(max, value); 345 } 346 return closed(min, max); 347 } 348 349 final Cut<C> lowerBound; 350 final Cut<C> upperBound; 351 352 private Range(Cut<C> lowerBound, Cut<C> upperBound) { 353 this.lowerBound = checkNotNull(lowerBound); 354 this.upperBound = checkNotNull(upperBound); 355 if (lowerBound.compareTo(upperBound) > 0 || lowerBound == Cut.<C>aboveAll() 356 || upperBound == Cut.<C>belowAll()) { 357 throw new IllegalArgumentException("Invalid range: " + toString(lowerBound, upperBound)); 358 } 359 } 360 361 /** 362 * Returns {@code true} if this range has a lower endpoint. 363 */ 364 public boolean hasLowerBound() { 365 return lowerBound != Cut.belowAll(); 366 } 367 368 /** 369 * Returns the lower endpoint of this range. 370 * 371 * @throws IllegalStateException if this range is unbounded below (that is, {@link 372 * #hasLowerBound()} returns {@code false}) 373 */ 374 public C lowerEndpoint() { 375 return lowerBound.endpoint(); 376 } 377 378 /** 379 * Returns the type of this range's lower bound: {@link BoundType#CLOSED} if the range includes 380 * its lower endpoint, {@link BoundType#OPEN} if it does not. 381 * 382 * @throws IllegalStateException if this range is unbounded below (that is, {@link 383 * #hasLowerBound()} returns {@code false}) 384 */ 385 public BoundType lowerBoundType() { 386 return lowerBound.typeAsLowerBound(); 387 } 388 389 /** 390 * Returns {@code true} if this range has an upper endpoint. 391 */ 392 public boolean hasUpperBound() { 393 return upperBound != Cut.aboveAll(); 394 } 395 396 /** 397 * Returns the upper endpoint of this range. 398 * 399 * @throws IllegalStateException if this range is unbounded above (that is, {@link 400 * #hasUpperBound()} returns {@code false}) 401 */ 402 public C upperEndpoint() { 403 return upperBound.endpoint(); 404 } 405 406 /** 407 * Returns the type of this range's upper bound: {@link BoundType#CLOSED} if the range includes 408 * its upper endpoint, {@link BoundType#OPEN} if it does not. 409 * 410 * @throws IllegalStateException if this range is unbounded above (that is, {@link 411 * #hasUpperBound()} returns {@code false}) 412 */ 413 public BoundType upperBoundType() { 414 return upperBound.typeAsUpperBound(); 415 } 416 417 /** 418 * Returns {@code true} if this range is of the form {@code [v..v)} or {@code (v..v]}. (This does 419 * not encompass ranges of the form {@code (v..v)}, because such ranges are <i>invalid</i> and 420 * can't be constructed at all.) 421 * 422 * <p>Note that certain discrete ranges such as the integer range {@code (3..4)} are <b>not</b> 423 * considered empty, even though they contain no actual values. In these cases, it may be 424 * helpful to preprocess ranges with {@link #canonical(DiscreteDomain)}. 425 */ 426 public boolean isEmpty() { 427 return lowerBound.equals(upperBound); 428 } 429 430 /** 431 * Returns {@code true} if {@code value} is within the bounds of this range. For example, on the 432 * range {@code [0..2)}, {@code contains(1)} returns {@code true}, while {@code contains(2)} 433 * returns {@code false}. 434 */ 435 public boolean contains(C value) { 436 checkNotNull(value); 437 // let this throw CCE if there is some trickery going on 438 return lowerBound.isLessThan(value) && !upperBound.isLessThan(value); 439 } 440 441 /** 442 * @deprecated Provided only to satisfy the {@link Predicate} interface; use {@link #contains} 443 * instead. 444 */ 445 @Deprecated 446 @Override 447 public boolean apply(C input) { 448 return contains(input); 449 } 450 451 /** 452 * Returns {@code true} if every element in {@code values} is {@linkplain #contains contained} in 453 * this range. 454 */ 455 public boolean containsAll(Iterable<? extends C> values) { 456 if (Iterables.isEmpty(values)) { 457 return true; 458 } 459 460 // this optimizes testing equality of two range-backed sets 461 if (values instanceof SortedSet) { 462 SortedSet<? extends C> set = cast(values); 463 Comparator<?> comparator = set.comparator(); 464 if (Ordering.natural().equals(comparator) || comparator == null) { 465 return contains(set.first()) && contains(set.last()); 466 } 467 } 468 469 for (C value : values) { 470 if (!contains(value)) { 471 return false; 472 } 473 } 474 return true; 475 } 476 477 /** 478 * Returns {@code true} if the bounds of {@code other} do not extend outside the bounds of this 479 * range. Examples: 480 * 481 * <ul> 482 * <li>{@code [3..6]} encloses {@code [4..5]} 483 * <li>{@code (3..6)} encloses {@code (3..6)} 484 * <li>{@code [3..6]} encloses {@code [4..4)} (even though the latter is empty) 485 * <li>{@code (3..6]} does not enclose {@code [3..6]} 486 * <li>{@code [4..5]} does not enclose {@code (3..6)} (even though it contains every value 487 * contained by the latter range) 488 * <li>{@code [3..6]} does not enclose {@code (1..1]} (even though it contains every value 489 * contained by the latter range) 490 * </ul> 491 * 492 * <p>Note that if {@code a.encloses(b)}, then {@code b.contains(v)} implies 493 * {@code a.contains(v)}, but as the last two examples illustrate, the converse is not always 494 * true. 495 * 496 * <p>Being reflexive, antisymmetric and transitive, the {@code encloses} relation defines a 497 * <i>partial order</i> over ranges. There exists a unique {@linkplain Range#all maximal} range 498 * according to this relation, and also numerous {@linkplain #isEmpty minimal} ranges. Enclosure 499 * also implies {@linkplain #isConnected connectedness}. 500 */ 501 public boolean encloses(Range<C> other) { 502 return lowerBound.compareTo(other.lowerBound) <= 0 503 && upperBound.compareTo(other.upperBound) >= 0; 504 } 505 506 /** 507 * Returns {@code true} if there exists a (possibly empty) range which is {@linkplain #encloses 508 * enclosed} by both this range and {@code other}. 509 * 510 * <p>For example, 511 * <ul> 512 * <li>{@code [2, 4)} and {@code [5, 7)} are not connected 513 * <li>{@code [2, 4)} and {@code [3, 5)} are connected, because both enclose {@code [3, 4)} 514 * <li>{@code [2, 4)} and {@code [4, 6)} are connected, because both enclose the empty range 515 * {@code [4, 4)} 516 * </ul> 517 * 518 * <p>Note that this range and {@code other} have a well-defined {@linkplain #span union} and 519 * {@linkplain #intersection intersection} (as a single, possibly-empty range) if and only if this 520 * method returns {@code true}. 521 * 522 * <p>The connectedness relation is both reflexive and symmetric, but does not form an {@linkplain 523 * Equivalence equivalence relation} as it is not transitive. 524 * 525 * <p>Note that certain discrete ranges are not considered connected, even though there are no 526 * elements "between them." For example, {@code [3, 5]} is not considered connected to {@code 527 * [6, 10]}. In these cases, it may be desirable for both input ranges to be preprocessed with 528 * {@link #canonical(DiscreteDomain)} before testing for connectedness. 529 */ 530 public boolean isConnected(Range<C> other) { 531 return lowerBound.compareTo(other.upperBound) <= 0 532 && other.lowerBound.compareTo(upperBound) <= 0; 533 } 534 535 /** 536 * Returns the maximal range {@linkplain #encloses enclosed} by both this range and {@code 537 * connectedRange}, if such a range exists. 538 * 539 * <p>For example, the intersection of {@code [1..5]} and {@code (3..7)} is {@code (3..5]}. The 540 * resulting range may be empty; for example, {@code [1..5)} intersected with {@code [5..7)} 541 * yields the empty range {@code [5..5)}. 542 * 543 * <p>The intersection exists if and only if the two ranges are {@linkplain #isConnected 544 * connected}. 545 * 546 * <p>The intersection operation is commutative, associative and idempotent, and its identity 547 * element is {@link Range#all}). 548 * 549 * @throws IllegalArgumentException if {@code isConnected(connectedRange)} is {@code false} 550 */ 551 public Range<C> intersection(Range<C> connectedRange) { 552 int lowerCmp = lowerBound.compareTo(connectedRange.lowerBound); 553 int upperCmp = upperBound.compareTo(connectedRange.upperBound); 554 if (lowerCmp >= 0 && upperCmp <= 0) { 555 return this; 556 } else if (lowerCmp <= 0 && upperCmp >= 0) { 557 return connectedRange; 558 } else { 559 Cut<C> newLower = (lowerCmp >= 0) ? lowerBound : connectedRange.lowerBound; 560 Cut<C> newUpper = (upperCmp <= 0) ? upperBound : connectedRange.upperBound; 561 return create(newLower, newUpper); 562 } 563 } 564 565 /** 566 * Returns the minimal range that {@linkplain #encloses encloses} both this range and {@code 567 * other}. For example, the span of {@code [1..3]} and {@code (5..7)} is {@code [1..7)}. 568 * 569 * <p><i>If</i> the input ranges are {@linkplain #isConnected connected}, the returned range can 570 * also be called their <i>union</i>. If they are not, note that the span might contain values 571 * that are not contained in either input range. 572 * 573 * <p>Like {@link #intersection(Range) intersection}, this operation is commutative, associative 574 * and idempotent. Unlike it, it is always well-defined for any two input ranges. 575 */ 576 public Range<C> span(Range<C> other) { 577 int lowerCmp = lowerBound.compareTo(other.lowerBound); 578 int upperCmp = upperBound.compareTo(other.upperBound); 579 if (lowerCmp <= 0 && upperCmp >= 0) { 580 return this; 581 } else if (lowerCmp >= 0 && upperCmp <= 0) { 582 return other; 583 } else { 584 Cut<C> newLower = (lowerCmp <= 0) ? lowerBound : other.lowerBound; 585 Cut<C> newUpper = (upperCmp >= 0) ? upperBound : other.upperBound; 586 return create(newLower, newUpper); 587 } 588 } 589 590 /** 591 * Returns the canonical form of this range in the given domain. The canonical form has the 592 * following properties: 593 * 594 * <ul> 595 * <li>equivalence: {@code a.canonical().contains(v) == a.contains(v)} for all {@code v} (in other 596 * words, {@code ContiguousSet.create(a.canonical(domain), domain).equals( 597 * ContiguousSet.create(a, domain))} 598 * <li>uniqueness: unless {@code a.isEmpty()}, 599 * {@code ContiguousSet.create(a, domain).equals(ContiguousSet.create(b, domain))} implies 600 * {@code a.canonical(domain).equals(b.canonical(domain))} 601 * <li>idempotence: {@code a.canonical(domain).canonical(domain).equals(a.canonical(domain))} 602 * </ul> 603 * 604 * <p>Furthermore, this method guarantees that the range returned will be one of the following 605 * canonical forms: 606 * 607 * <ul> 608 * <li>[start..end) 609 * <li>[start..+∞) 610 * <li>(-∞..end) (only if type {@code C} is unbounded below) 611 * <li>(-∞..+∞) (only if type {@code C} is unbounded below) 612 * </ul> 613 */ 614 public Range<C> canonical(DiscreteDomain<C> domain) { 615 checkNotNull(domain); 616 Cut<C> lower = lowerBound.canonical(domain); 617 Cut<C> upper = upperBound.canonical(domain); 618 return (lower == lowerBound && upper == upperBound) ? this : create(lower, upper); 619 } 620 621 /** 622 * Returns {@code true} if {@code object} is a range having the same endpoints and bound types as 623 * this range. Note that discrete ranges such as {@code (1..4)} and {@code [2..3]} are <b>not</b> 624 * equal to one another, despite the fact that they each contain precisely the same set of values. 625 * Similarly, empty ranges are not equal unless they have exactly the same representation, so 626 * {@code [3..3)}, {@code (3..3]}, {@code (4..4]} are all unequal. 627 */ 628 @Override public boolean equals(@Nullable Object object) { 629 if (object instanceof Range) { 630 Range<?> other = (Range<?>) object; 631 return lowerBound.equals(other.lowerBound) 632 && upperBound.equals(other.upperBound); 633 } 634 return false; 635 } 636 637 /** Returns a hash code for this range. */ 638 @Override public int hashCode() { 639 return lowerBound.hashCode() * 31 + upperBound.hashCode(); 640 } 641 642 /** 643 * Returns a string representation of this range, such as {@code "[3..5)"} (other examples are 644 * listed in the class documentation). 645 */ 646 @Override public String toString() { 647 return toString(lowerBound, upperBound); 648 } 649 650 private static String toString(Cut<?> lowerBound, Cut<?> upperBound) { 651 StringBuilder sb = new StringBuilder(16); 652 lowerBound.describeAsLowerBound(sb); 653 sb.append('\u2025'); 654 upperBound.describeAsUpperBound(sb); 655 return sb.toString(); 656 } 657 658 /** 659 * Used to avoid http://bugs.sun.com/view_bug.do?bug_id=6558557 660 */ 661 private static <T> SortedSet<T> cast(Iterable<T> iterable) { 662 return (SortedSet<T>) iterable; 663 } 664 665 Object readResolve() { 666 if (this.equals(ALL)) { 667 return all(); 668 } else { 669 return this; 670 } 671 } 672 673 @SuppressWarnings("unchecked") // this method may throw CCE 674 static int compareOrThrow(Comparable left, Comparable right) { 675 return left.compareTo(right); 676 } 677 678 /** 679 * Needed to serialize sorted collections of Ranges. 680 */ 681 private static class RangeLexOrdering extends Ordering<Range<?>> implements Serializable { 682 683 @Override 684 public int compare(Range<?> left, Range<?> right) { 685 return ComparisonChain.start() 686 .compare(left.lowerBound, right.lowerBound) 687 .compare(left.upperBound, right.upperBound) 688 .result(); 689 } 690 691 private static final long serialVersionUID = 0; 692 } 693 694 private static final long serialVersionUID = 0; 695}