()
| 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 { |
nothing calls this directly
no test coverage detected