Returns a String representation of this pair using the format (left,right). @return a string describing this object, not null.
()
| 241 | * @return a string describing this object, not null. |
| 242 | */ |
| 243 | @Override |
| 244 | public String toString() { |
| 245 | return "(" + getLeft() + ',' + getRight() + ')'; |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * Formats the receiver using the given format. |
no test coverage detected