static ByteIterable getNotNullValue(@NotNull final INode ln) { final ByteIterable value = ln.getValue(); if (value == null) { throw new ExodusException("Value can't be null"); } return value; }
@Override public boolean add(@NotNull final INode ln) { return add(ln.getKey(), getNotNullValue(ln)); }
@Override public void putRight(@NotNull final INode ln) { putRight(ln.getKey(), getNotNullValue(ln)); }