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

Method valueOf

lib/java/lang/Integer.java:636–638  ·  view source on GitHub ↗

Parses the specified string as a signed decimal integer value. @param string the string representation of an integer value. @return an Integer instance containing the integer value represented by string. @throws NumberFormatException if string

(String string)

Source from the content-addressed store, hash-verified

634 * @see #parseInt(String)
635 */
636 public static Integer valueOf(String string) throws NumberFormatException {
637 return valueOf(parseInt(string));
638 }
639
640 /**
641 * Parses the specified string as a signed integer value using the specified

Callers 11

decodeMethod · 0.95
getIntegerMethod · 0.95
malformedForLengthMethod · 0.95
unmappableForLengthMethod · 0.95
addMethod · 0.95
addAllMethod · 0.95
getMethod · 0.95
removeMethod · 0.95
removeRangeMethod · 0.95
setMethod · 0.95
checkBoundsMethod · 0.95

Calls 1

parseIntMethod · 0.95

Tested by

no test coverage detected