Gets the range as a String. The format of the String is '[ min .. max ]'. @return the String representation of this range.
()
| 566 | * @return the {@link String} representation of this range. |
| 567 | */ |
| 568 | @Override |
| 569 | public String toString() { |
| 570 | if (toString == null) { |
| 571 | toString = "[" + minimum + ".." + maximum + "]"; |
| 572 | } |
| 573 | return toString; |
| 574 | } |
| 575 | |
| 576 | /** |
| 577 | * Formats the receiver using the given format. |
no test coverage detected