MCPcopy Index your code
hub / github.com/apache/tomcat / booleanValue

Method booleanValue

java/org/apache/tomcat/util/json/JSONParser.java:340–364  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

338 }
339
340 final public Boolean booleanValue() throws ParseException {
341 Boolean b;
342 switch (jj_nt.kind) {
343 case TRUE: {
344 jj_consume_token(TRUE);
345 b = Boolean.TRUE;
346 break;
347 }
348 case FALSE: {
349 jj_consume_token(FALSE);
350 b = Boolean.FALSE;
351 break;
352 }
353 default:
354 jj_la1[8] = jj_gen;
355 jj_consume_token(-1);
356 throw new ParseException();
357 }
358 {
359 if ("" != null) {
360 return b;
361 }
362 }
363 throw new Error("Missing return statement in function");
364 }
365
366 final public Number number() throws ParseException {
367 Token t;

Callers 15

objectKeyMethod · 0.95
valueMethod · 0.95
getAutoCommitMethod · 0.45
isReadOnlyMethod · 0.45
getBMethod · 0.45
activateObjectMethod · 0.45
passivateObjectMethod · 0.45
setupDefaultsMethod · 0.45
getPerUserLifoMethod · 0.45

Calls 1

jj_consume_tokenMethod · 0.95

Tested by

no test coverage detected