Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.odmg.DSet

Uses of DSet in org.odmg
 

Methods in org.odmg that return DSet
 DSet Implementation.newDSet()
          Create a new DSet object.
 DSet DSet.union(DSet otherSet)
          Create a new DSet object that is the set union of this DSet object and the set referenced by otherSet.
 DSet DSet.intersection(DSet otherSet)
          Create a new DSet object that is the set intersection of this DSet object and the set referenced by otherSet.
 DSet DSet.difference(DSet otherSet)
          Create a new DSet object that contains the elements of this collection minus the elements in otherSet.
 

Methods in org.odmg with parameters of type DSet
 DSet DSet.union(DSet otherSet)
          Create a new DSet object that is the set union of this DSet object and the set referenced by otherSet.
 DSet DSet.intersection(DSet otherSet)
          Create a new DSet object that is the set intersection of this DSet object and the set referenced by otherSet.
 DSet DSet.difference(DSet otherSet)
          Create a new DSet object that contains the elements of this collection minus the elements in otherSet.
 boolean DSet.subsetOf(DSet otherSet)
          Determine whether this set is a subset of the set referenced by otherSet.
 boolean DSet.properSubsetOf(DSet otherSet)
          Determine whether this set is a proper subset of the set referenced by otherSet.
 boolean DSet.supersetOf(DSet otherSet)
          Determine whether this set is a superset of the set referenced by otherSet.
 boolean DSet.properSupersetOf(DSet otherSet)
          Determine whether this set is a proper superset of the set referenced by otherSet.