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

Method Short

lib/java/lang/Short.java:74–76  ·  view source on GitHub ↗

Constructs a new Short from the specified string. @param string the string representation of a short value. @throws NumberFormatException if string can not be decoded into a short value. @see #parseShort(String)

(String string)

Source from the content-addressed store, hash-verified

72 * @see #parseShort(String)
73 */
74 public Short(String string) throws NumberFormatException {
75 this(parseShort(string));
76 }
77
78 /**
79 * Constructs a new {@code Short} with the specified primitive short value.

Callers

nothing calls this directly

Calls 1

parseShortMethod · 0.95

Tested by

no test coverage detected