(Utf8Sequence sequence)
| 1288 | } |
| 1289 | |
| 1290 | public static int parseInt(Utf8Sequence sequence) throws NumericException { |
| 1291 | if (sequence == null) { |
| 1292 | throw NumericException.instance().put("null string"); |
| 1293 | } |
| 1294 | return parseInt0(sequence.asAsciiCharSequence(), 0, sequence.size()); |
| 1295 | } |
| 1296 | |
| 1297 | public static int parseInt(Utf8Sequence sequence, int p, int lim) throws NumericException { |
| 1298 | if (sequence == null) { |