Searched defs:parseLong (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/lang/
H A DLong.java86 * @see #parseLong(String)
89 this(parseLong(string));
320 public static long parseLong(String string) throws NumberFormatException { method in class:Long
321 return parseLong(string, 10);
340 public static long parseLong(String string, int radix) throws NumberFormatException { method in class:Long
398 * This method behaves the same as {@link #parseLong(String, int)} except
402 * @see #parseLong(String, int)
508 * @see #parseLong(String)
511 return valueOf(parseLong(string));
528 * @see #parseLong(Strin
[all...]

Completed in 39 milliseconds