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

Method append

lib/java/lang/StringBuilder.java:106–109  ·  view source on GitHub ↗

Appends the string representation of the specified boolean value. The boolean value is converted to a String according to the rule defined by String#valueOf(boolean). @param b the boolean value to append. @return this builder. @see String#valueOf(boolean)

(boolean b)

Source from the content-addressed store, hash-verified

104 * @see String#valueOf(boolean)
105 */
106 public StringBuilder append(boolean b) {
107 append0(b ? "true" : "false"); //$NON-NLS-1$ //$NON-NLS-2$
108 return this;
109 }
110
111 /**
112 * Appends the string representation of the specified {@code char} value.

Callers 15

decodeMethod · 0.95
encodeURLMethod · 0.95
toASCIILowerCaseMethod · 0.95
toASCIIUpperCaseMethod · 0.95
toStringMethod · 0.95
toHexStringMethod · 0.95
replaceMethod · 0.95
toHexStringMethod · 0.95
genTempFileMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 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