|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--com.lucene.util.BitVector
Optimized implementation of a vector of bits. This is more-or-less like java.util.BitSet, but also includes the following:
Field Summary | |
byte[] |
bits
This is public just so that methods will inline. |
Constructor Summary | |
BitVector(Directory d,
String name)
Constructs a bit vector from the file name in Directory
d , as written by the write(com.lucene.store.Directory, java.lang.String) method. |
|
BitVector(int n)
Constructs a vector capable of holding n bits. |
Method Summary | |
void |
clear(int bit)
Sets the value of bit to zero. |
int |
count()
Returns the total number of one bits in this vector. |
boolean |
get(int bit)
Returns true if bit is one and
false if it is zero. |
void |
set(int bit)
Sets the value of bit to one. |
int |
size()
Returns the number of bits in this vector. |
void |
write(Directory d,
String name)
Writes this vector to the file name in Directory
d , in a format that can be read by the constructor BitVector(Directory, String) . |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public byte[] bits
Constructor Detail |
public BitVector(int n)
n
bits.public BitVector(Directory d, String name) throws IOException
name
in Directory
d
, as written by the write(com.lucene.store.Directory, java.lang.String)
method.Method Detail |
public final void set(int bit)
bit
to one.public final void clear(int bit)
bit
to zero.public final boolean get(int bit)
true
if bit
is one and
false
if it is zero.public final int size()
public final int count()
public final void write(Directory d, String name) throws IOException
name
in Directory
d
, in a format that can be read by the constructor BitVector(Directory, String)
.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |