Returns a string representation of this range, such as "[3..5)" (other examples are listed in the class documentation).
()
| 640 | * listed in the class documentation). |
| 641 | */ |
| 642 | @Override |
| 643 | public String toString() { |
| 644 | return toString(lowerBound, upperBound); |
| 645 | } |
| 646 | |
| 647 | private static String toString(Cut<?> lowerBound, Cut<?> upperBound) { |
| 648 | StringBuilder sb = new StringBuilder(16); |
no test coverage detected