1 19 package org.netbeans.mdr.persistence; 20 21 26 27 public interface Index { 28 32 public String getName() throws StorageException; 33 34 38 public Storage.EntryType getValueType() throws StorageException; 39 40 44 public Storage.EntryType getKeyType() throws StorageException; 45 46 51 public java.util.Set keySet() throws StorageException; 52 53 61 public void add(Object key, Object value) throws StorageException; 62 63 68 public boolean remove (Object key) throws StorageException; 69 } 70 | Popular Tags |