MCPcopy Index your code
hub / github.com/davidgiven/luje / append

Method append

lib/java/lang/StringBuffer.java:108–110  ·  view source on GitHub ↗

Adds the string representation of the specified boolean to the end of this StringBuffer. If the argument is true the string "true" is appended, otherwise the string "false" is appended. @param b the boolean to append. @return this StringBuffer. @see String#val

(boolean b)

Source from the content-addressed store, hash-verified

106 * @see String#valueOf(boolean)
107 */
108 public StringBuffer append(boolean b) {
109 return append(b ? "true" : "false"); //$NON-NLS-1$//$NON-NLS-2$
110 }
111
112 /**
113 * Adds the specified character to the end of this buffer.

Callers 1

appendCodePointMethod · 0.95

Calls 9

toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
append0Method · 0.80
appendNullMethod · 0.80
toStringMethod · 0.65
getValueMethod · 0.65
lengthMethod · 0.65

Tested by

no test coverage detected