Method valueOf(String s, int radix)
Return type: java.lang.Integer
Member of: java.lang.Integer
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 return Integer.valueOf((String)addr[row],16).intValue();
2 return Integer.valueOf(valField.getText(),16).intValue();
3 return Integer.valueOf(v.substring(2), 16).intValue();
4 Integer x = Integer.valueOf(str.substring(2, str.length()-1), 8);
5 int v = Integer.valueOf(str.substring(i+1, i+3), 0x10).intValue();
6 Integer.valueOf(stok.nextToken(),
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.