Returns a string representation of this range, such as {@code "[3..5)"} (other examples are listed in the class documentation).
()
| 679 | * listed in the class documentation). |
| 680 | */ |
| 681 | @Override |
| 682 | public String toString() { |
| 683 | return toString(lowerBound, upperBound); |
| 684 | } |
| 685 | |
| 686 | private static String toString(Cut<?> lowerBound, Cut<?> upperBound) { |
| 687 | StringBuilder sb = new StringBuilder(16); |
no test coverage detected