MCPcopy Create free account
hub / github.com/BaseXdb/basex / toJava

Method toJava

basex-core/src/main/java/org/basex/query/value/map/XQMap.java:400–405  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

398 }
399
400 @Override
401 public final HashMap<Object, Object> toJava() throws QueryException {
402 final HashMap<Object, Object> map = new HashMap<>((int) structSize());
403 forEach((key, value) -> map.put(key.toJava(), value.toJava()));
404 return map;
405 }
406
407 @Override
408 public final boolean deepEqual(final Item item, final DeepEqual deep) throws QueryException {

Callers

nothing calls this directly

Calls 3

forEachMethod · 0.95
structSizeMethod · 0.45
putMethod · 0.45

Tested by

no test coverage detected