1819202122232425262728
public AbstractFilter(long maxValue, int machineNum) { this.size = maxValue; switch (machineNum) { case BitMap.MACHINE32: bm = new IntMap((int) (size / machineNum)); break; case BitMap.MACHINE64: bm = new LongMap((int) (size / machineNum)); break; default: