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

Method Integer

lib/java/lang/Integer.java:83–85  ·  view source on GitHub ↗

Constructs a new Integer with the specified primitive integer value. @param value the primitive integer value to store in the new instance.

(int value)

Source from the content-addressed store, hash-verified

81 * the primitive integer value to store in the new instance.
82 */
83 public Integer(int value) {
84 this.value = value;
85 }
86
87 /**
88 * Constructs a new {@code Integer} from the specified string.

Callers

nothing calls this directly

Calls 1

parseIntMethod · 0.95

Tested by

no test coverage detected