Returns a string representing the state of this float buffer. @return a string representing the state of this float buffer.
()
| 534 | * @return a string representing the state of this float buffer. |
| 535 | */ |
| 536 | @Override |
| 537 | public String toString() { |
| 538 | StringBuilder buf = new StringBuilder(); |
| 539 | buf.append(getClass().getName()); |
| 540 | buf.append(", status: capacity="); //$NON-NLS-1$ |
| 541 | buf.append(capacity()); |
| 542 | buf.append(" position="); //$NON-NLS-1$ |
| 543 | buf.append(position()); |
| 544 | buf.append(" limit="); //$NON-NLS-1$ |
| 545 | buf.append(limit()); |
| 546 | return buf.toString(); |
| 547 | } |
| 548 | } |