Returns a string representation of this range, such as "[3..5)" (other examples are listed in the class documentation).
()
| 690 | */ |
| 691 | |
| 692 | @Override |
| 693 | public String toString() { |
| 694 | return toString(lowerBound, upperBound); |
| 695 | } |
| 696 | |
| 697 | private static String toString(Cut<?> lowerBound, Cut<?> upperBound) { |
| 698 | StringBuilder sb = new StringBuilder(16); |
no test coverage detected