Package owl.collections
Class UpwardClosedSet
- java.lang.Object
-
- owl.collections.UpwardClosedSet
-
public final class UpwardClosedSet extends Object
Bucket-based implementation of an upward-closed set.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
contains(BitSet bitSet)
UpwardClosedSet
intersection(UpwardClosedSet otherSet)
static UpwardClosedSet
of()
static UpwardClosedSet
of(BitSet bitSet)
List<BitSet>
representatives()
UpwardClosedSet
union(UpwardClosedSet otherSet)
-
-
-
Method Detail
-
of
public static UpwardClosedSet of()
-
of
public static UpwardClosedSet of(BitSet bitSet)
-
contains
public boolean contains(BitSet bitSet)
-
intersection
public UpwardClosedSet intersection(UpwardClosedSet otherSet)
-
union
public UpwardClosedSet union(UpwardClosedSet otherSet)
-
-