| java.lang.Object java.util.BitSet
Constructor Summary | |
public | BitSet() | public | BitSet(int nbits) |
BitSet | public BitSet(int nbits)(Code) | | |
cardinality | public int cardinality()(Code) | | |
clear | public void clear()(Code) | | |
clear | public void clear(int pos)(Code) | | |
clear | public void clear(int from, int to)(Code) | | |
flip | public void flip(int index)(Code) | | |
flip | public void flip(int from, int to)(Code) | | |
get | public boolean get(int pos)(Code) | | |
hashCode | public int hashCode()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
length | public int length()(Code) | | |
nextClearBit | public int nextClearBit(int from)(Code) | | |
nextSetBit | public int nextSetBit(int from)(Code) | | |
set | public void set(int pos)(Code) | | |
set | public void set(int index, boolean value)(Code) | | |
set | public void set(int from, int to)(Code) | | |
set | public void set(int from, int to, boolean value)(Code) | | |
|
|