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

Method insert

lib/java/lang/StringBuffer.java:429–432  ·  view source on GitHub ↗

Inserts the character into this buffer at the specified offset. @param index the index at which to insert. @param ch the character to insert. @return this buffer. @throws ArrayIndexOutOfBoundsException if index < 0 or index > length().

(int index, char ch)

Source from the content-addressed store, hash-verified

427 * if {@code index < 0} or {@code index > length()}.
428 */
429 public synchronized StringBuffer insert(int index, char ch) {
430 insert0(index, ch);
431 return this;
432 }
433
434 /**
435 * Inserts the string representation of the specified boolean into this

Callers

nothing calls this directly

Calls 6

toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
insert0Method · 0.80
toStringMethod · 0.65

Tested by

no test coverage detected