Returns a string represents of the state of this int buffer. @return a string represents of the state of this int buffer.
()
| 519 | * @return a string represents of the state of this int buffer. |
| 520 | */ |
| 521 | @Override |
| 522 | public String toString() { |
| 523 | StringBuilder buf = new StringBuilder(); |
| 524 | buf.append(getClass().getName()); |
| 525 | buf.append(", status: capacity="); //$NON-NLS-1$ |
| 526 | buf.append(capacity()); |
| 527 | buf.append(" position="); //$NON-NLS-1$ |
| 528 | buf.append(position()); |
| 529 | buf.append(" limit="); //$NON-NLS-1$ |
| 530 | buf.append(limit()); |
| 531 | return buf.toString(); |
| 532 | } |
| 533 | } |