MCPcopy Index your code
hub / github.com/codenameone/CodenameOne / append

Method append

vm/JavaAPI/src/java/lang/StringBuilder.java:120–125  ·  view source on GitHub ↗

Appends the string representation of the boolean argument to the string builder. The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.

(boolean b)

Source from the content-addressed store, hash-verified

118 * The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
119 */
120 public java.lang.StringBuilder append(boolean b){
121 if(b) {
122 return append("true");
123 }
124 return append("false");
125 }
126
127 /**
128 * Appends the string representation of the char argument to this string builder.

Callers 15

TranscriptionResultMethod · 0.95
toSrtMethod · 0.95
toVttMethod · 0.95
toJsonMethod · 0.95
scrubEmailsMethod · 0.95
scrubDigitRunsMethod · 0.95
getTextMethod · 0.95
tileForMethod · 0.95
toHexMethod · 0.95
otpauthUriMethod · 0.95
padMethod · 0.95
encodeMethod · 0.95

Calls 10

enlargeBufferMethod · 0.95
arraycopyMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.95
toStringMethod · 0.65
lengthMethod · 0.65
charAtMethod · 0.65
getCharsMethod · 0.45

Tested by 15

toStringMethod · 0.76
arrayToStringMethod · 0.76
slurpMethod · 0.76
jsonEscapeMethod · 0.76
summarizeMessagesMethod · 0.76
mainMethod · 0.76
describeArgsMethod · 0.76
runMavenCompileMethod · 0.76
javaMajorMethod · 0.76
runTestMethod · 0.76
buildPayloadMethod · 0.76
buildLegendMethod · 0.76