1 19 package org.netbeans.mdr.persistence; 20 21 26 public interface MultivaluedIndex extends Index { 27 34 public java.util.Collection getItems (Object key) throws StorageException; 35 41 public java.util.Collection getObjects (Object key, SinglevaluedIndex repos) throws StorageException; 42 49 public boolean isUnique() throws StorageException; 50 51 57 public boolean remove (Object key, Object value) throws StorageException; 58 59 69 public java.util.Collection queryByKeyPrefix (Object prefix, SinglevaluedIndex repos) throws StorageException; 70 } 71 | Popular Tags |