public Collection<V> values() { return instance.values(); } public void putAll(Map<? extends byte [], ? extends V> m) { this.instance.putAll(m); } public V remove(Object key) { return this.instance.remove(key); } public V put(byte [] key, V value) { return this.instance.put(key, value); } public Comparator<? super byte[]> comparator() { return this.instance.comparator(); }