MCPcopy Create free account
hub / github.com/davidgiven/luje / toString

Method toString

lib/java/nio/IntBuffer.java:521–532  ·  view source on GitHub ↗

Returns a string represents of the state of this int buffer. @return a string represents of the state of this int buffer.

()

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls 7

appendMethod · 0.95
toStringMethod · 0.95
getClassMethod · 0.80
positionMethod · 0.80
limitMethod · 0.80
getNameMethod · 0.45
capacityMethod · 0.45

Tested by

no test coverage detected