Searched defs:FixedBitSet (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/util/
H A DFixedBitSet.java39 public final class FixedBitSet extends DocIdSet implements Bits { class in inherits:DocIdSet,Bits
52 public FixedBitSet(int numBits) { method in class:FixedBitSet
58 public FixedBitSet(FixedBitSet other) { method in class:FixedBitSet
201 public void or(FixedBitSet other) {
237 public void and(FixedBitSet other) {
270 public void andNot(FixedBitSet other) {
387 return new FixedBitSet(this);
396 if (!(o instanceof FixedBitSet)) {
399 FixedBitSet othe
[all...]

Completed in 11 milliseconds