1 package org.odmg; 2 3 4 5 6 7 36 37 39 40 41 public interface DCollection extends java.util.Collection  42 43 { 44 45 60 61 public Object selectElement(String predicate) throws QueryInvalidException; 62 63 64 65 78 79 public java.util.Iterator select(String predicate) throws QueryInvalidException; 80 81 82 83 96 97 public DCollection query(String predicate) throws QueryInvalidException; 98 99 100 101 116 117 public boolean existsElement(String predicate) throws QueryInvalidException; 118 119 } 120 121 | Popular Tags |