MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / valueOf

Method valueOf

vm/JavaAPI/src/java/lang/Integer.java:296–298  ·  view source on GitHub ↗

Returns a new Integer object initialized to the value of the specified String. The argument is interpreted as representing a signed decimal integer, exactly as if the argument were given to the method. The result is an Integer object that represents the integer value specified by the string. In othe

(java.lang.String s)

Source from the content-addressed store, hash-verified

294 * new Integer(Integer.parseInt(s))
295 */
296 public static java.lang.Integer valueOf(java.lang.String s) throws java.lang.NumberFormatException{
297 return new Integer(parseInt(s));
298 }
299
300 /**
301 * Returns a new Integer object initialized to the value of the specified String. The first argument is interpreted as representing a signed integer in the radix specified by the second argument, exactly as if the arguments were given to the

Callers 15

playMethod · 0.95
onVoiceCompleteMethod · 0.95
setVolumeMethod · 0.95
pauseVoiceMethod · 0.95
resumeVoiceMethod · 0.95
stopVoiceMethod · 0.95
unloadSoundMethod · 0.95
getPropertyValueMethod · 0.95
getPropertyValueMethod · 0.95
paintMethod · 0.95
getPropertyValueMethod · 0.95
NativeMapMethod · 0.95

Calls 1

parseIntMethod · 0.95