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

Method toString

lib/java/nio/FloatBuffer.java:536–547  ·  view source on GitHub ↗

Returns a string representing the state of this float buffer. @return a string representing the state of this float buffer.

()

Source from the content-addressed store, hash-verified

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}

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