MCPcopy Create free account
hub / github.com/davidgiven/luje / valueOf

Method valueOf

lib/java/lang/Long.java:546–548  ·  view source on GitHub ↗

Parses the specified string as a signed decimal long value. @param string the string representation of a long value. @return a Long instance containing the long value represented by string. @throws NumberFormatException if string is {@code null

(String string)

Source from the content-addressed store, hash-verified

544 * @see #parseLong(String)
545 */
546 public static Long valueOf(String string) throws NumberFormatException {
547 return valueOf(parseLong(string));
548 }
549
550 /**
551 * Parses the specified string as a signed long value using the specified

Callers 2

decodeMethod · 0.95
getLongMethod · 0.95

Calls 1

parseLongMethod · 0.95

Tested by

no test coverage detected