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

Method String

lib/java/lang/String.java:152–156  ·  view source on GitHub ↗

Creates an empty string.

()

Source from the content-addressed store, hash-verified

150 * Creates an empty string.
151 */
152 public String() {
153 value = new char[0];
154 offset = 0;
155 count = 0;
156 }
157
158 /*
159 * Private constructor used for JIT optimization.

Callers

nothing calls this directly

Calls 13

arraycopyMethod · 0.95
defaultCharsetMethod · 0.95
decodeMethod · 0.95
wrapMethod · 0.95
lengthMethod · 0.95
arrayMethod · 0.95
getCharsetMethod · 0.95
wrapMethod · 0.95
toCharsMethod · 0.95
valueOfMethod · 0.95
toCharArrayMethod · 0.80
lengthMethod · 0.65

Tested by

no test coverage detected