MCPcopy Create free account
hub / github.com/SquirrelJME/SquirrelJME / toString

Method toString

runt/apis/cldc-compact/java/lang/Byte.java:177–188  ·  view source on GitHub ↗

{@inheritDoc} @since 2018/11/14

()

Source from the content-addressed store, hash-verified

175 * @since 2018/11/14
176 */
177 @Override
178 public String toString()
179 {
180 Reference<String> ref = this._string;
181 String rv;
182
183 if (ref == null || null == (rv = ref.get()))
184 this._string = new WeakReference<>(
185 (rv = Byte.toString(this._value)));
186
187 return rv;
188 }
189
190 /**
191 * Decodes a byte value from the string in the same form as

Callers

nothing calls this directly

Calls 2

toStringMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected