(CharSequence sequence)
| 1473 | } |
| 1474 | |
| 1475 | public static long parseLong(CharSequence sequence) throws NumericException { |
| 1476 | if (sequence == null) { |
| 1477 | throw NumericException.instance().put("null string"); |
| 1478 | } |
| 1479 | return parseLong0(sequence, 0, sequence.length()); |
| 1480 | } |
| 1481 | |
| 1482 | public static long parseLong(CharSequence sequence, int p, int lim) throws NumericException { |
| 1483 | if (sequence == null) { |