1 package org.odmg; 2 3 4 5 30 31 33 34 35 public interface DSet extends DCollection, java.util.Set  36 37 { 38 39 40 41 52 53 public DSet union(DSet otherSet); 54 55 56 57 70 71 public DSet intersection(DSet otherSet); 72 73 74 75 88 89 public DSet difference(DSet otherSet); 90 91 92 93 104 105 public boolean subsetOf(DSet otherSet); 106 107 108 109 122 123 public boolean properSubsetOf(DSet otherSet); 124 125 126 127 138 139 public boolean supersetOf(DSet otherSet); 140 141 142 143 156 157 public boolean properSupersetOf(DSet otherSet); 158 159 } 160 161 | Popular Tags |