Package com.googlecode.javaewah32
Class NonEmptyVirtualStorage32
- java.lang.Object
-
- com.googlecode.javaewah32.NonEmptyVirtualStorage32
-
- All Implemented Interfaces:
BitmapStorage32
public class NonEmptyVirtualStorage32 extends java.lang.Object implements BitmapStorage32
This is a BitmapStorage that can be used to determine quickly if the result of an operation is non-trivial... that is, whether there will be at least on set bit.- Since:
- 0.5.0
- Author:
- Daniel Lemire and Veronika Zenz
-
-
Constructor Summary
Constructors Constructor Description NonEmptyVirtualStorage32()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int newdata)
If the word to be added is non-zero, a NonEmptyException exception is thrown.void
addStreamOfEmptyWords(boolean v, int number)
If the boolean value is true and number is greater than 0, then it throws a NonEmptyException exception, otherwise, nothing happens.void
addStreamOfLiteralWords(int[] data, int start, int number)
throws a NonEmptyException exception when number is greater than 0void
addStreamOfNegatedLiteralWords(int[] data, int start, int number)
throws a NonEmptyException exception when number is greater than 0void
setSizeInBits(int bits)
Does nothing.
-
-
-
Method Detail
-
add
public void add(int newdata)
If the word to be added is non-zero, a NonEmptyException exception is thrown.- Specified by:
add
in interfaceBitmapStorage32
- Parameters:
newdata
- the word
-
addStreamOfLiteralWords
public void addStreamOfLiteralWords(int[] data, int start, int number)
throws a NonEmptyException exception when number is greater than 0- Specified by:
addStreamOfLiteralWords
in interfaceBitmapStorage32
- Parameters:
data
- the literal wordsstart
- the starting point in the arraynumber
- the number of literal words to add
-
addStreamOfEmptyWords
public void addStreamOfEmptyWords(boolean v, int number)
If the boolean value is true and number is greater than 0, then it throws a NonEmptyException exception, otherwise, nothing happens.- Specified by:
addStreamOfEmptyWords
in interfaceBitmapStorage32
- Parameters:
v
- zeros or onesnumber
- how many to words add
-
addStreamOfNegatedLiteralWords
public void addStreamOfNegatedLiteralWords(int[] data, int start, int number)
throws a NonEmptyException exception when number is greater than 0- Specified by:
addStreamOfNegatedLiteralWords
in interfaceBitmapStorage32
- Parameters:
data
- the literal wordsstart
- the starting point in the arraynumber
- the number of literal words to add
-
setSizeInBits
public void setSizeInBits(int bits)
Does nothing.- Specified by:
setSizeInBits
in interfaceBitmapStorage32
- Parameters:
bits
- number of bits- See Also:
BitmapStorage.setSizeInBits(int)
-
-