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

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

1 return (int)Long.parseLong(str, 16);
2 long rgba = Long.parseLong( v.substring(1), 16 );
3 int mask = (int)Long.parseLong(bitMask.substring(2), 16);
4 v = Long.parseLong(value.substring(2), 16);
5 n = Long.parseLong(s.substring(2,s.length()),16);
6 size = Long.parseLong(sizeLine, 10);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.