MCPcopy Create free account
hub / github.com/questdb/questdb / parseLong

Method parseLong

core/src/main/java/io/questdb/std/Numbers.java:1475–1480  ·  view source on GitHub ↗
(CharSequence sequence)

Source from the content-addressed store, hash-verified

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) {

Callers 15

onEventMethod · 0.95
addColumnValueMethod · 0.95
onEventMethod · 0.95
parseExplicitLongMethod · 0.95
parseExplicitLong2Method · 0.95
testEmptyLongMethod · 0.95
testLongMethod · 0.95
testLongEdgeMethod · 0.95
testLongUtf8SequenceMethod · 0.95
testParseLongEmptyMethod · 0.95

Calls 6

instanceMethod · 0.95
parseLong0Method · 0.95
putMethod · 0.65
lengthMethod · 0.65
asAsciiCharSequenceMethod · 0.65
sizeMethod · 0.65

Tested by 15

onEventMethod · 0.76
addColumnValueMethod · 0.76
onEventMethod · 0.76
parseExplicitLongMethod · 0.76
parseExplicitLong2Method · 0.76
testEmptyLongMethod · 0.76
testLongMethod · 0.76
testLongEdgeMethod · 0.76
testLongUtf8SequenceMethod · 0.76
testParseLongEmptyMethod · 0.76