| java.lang.Object org.hsqldb.store.BitMap
BitMap | public class BitMap (Code) | | Implementation of a bit map of any size, together with static methods to
manipulate int values as bit maps.
author: fredt@users version: 1.8.0 since: 1.8.0 |
Constructor Summary | |
public | BitMap(int initialCapacity) |
Method Summary | |
public int | get(int pos) | public static boolean | isSet(int map, int pos) | public void | reset() | public int | set(int pos) | public static int | set(int map, int pos) | public int | unset(int pos) | public static int | unset(int map, int pos) |
defaultCapacity | int defaultCapacity(Code) | | |
BitMap | public BitMap(int initialCapacity)(Code) | | |
get | public int get(int pos)(Code) | | |
isSet | public static boolean isSet(int map, int pos)(Code) | | |
reset | public void reset()(Code) | | Resets to blank with original capacity
|
set | public int set(int pos)(Code) | | Sets pos and returns old value
|
set | public static int set(int map, int pos)(Code) | | |
unset | public int unset(int pos)(Code) | | Unsets pos and returns old value
|
unset | public static int unset(int map, int pos)(Code) | | |
|
|