MCPcopy Create free account
hub / github.com/ReadyTalk/avian / parseInt

Method parseInt

classpath/java/lang/Integer.java:118–120  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

116 }
117
118 public static int parseInt(String s) {
119 return parseInt(s, 10);
120 }
121
122 public static int parseInt(String s, int radix) {
123 return (int) Long.parseLong(s, radix);

Callers 11

mainMethod · 0.95
callMethod · 0.95
mainMethod · 0.95
parseByteMethod · 0.95
IntegerMethod · 0.95
valueOfMethod · 0.95
decodeMethod · 0.95
parseURLMethod · 0.95
compileMethod · 0.95
parseEscapedCharacterMethod · 0.95
parseFieldMethod · 0.95

Calls 1

parseLongMethod · 0.95

Tested by 3

mainMethod · 0.76
callMethod · 0.76
mainMethod · 0.76