public interface MutableBitmap extends ImmutableBitmap
| Modifier and Type | Method and Description | 
|---|---|
void | 
add(int entry)
Add the specified integer to the bitmap. 
 | 
void | 
clear()
Empties the content of this bitmap. 
 | 
int | 
getSizeInBytes()
Return the size in bytes for the purpose of serialization to a ByteBuffer. 
 | 
void | 
or(MutableBitmap mutableBitmap)
Compute the bitwise-or of this bitmap with another bitmap. 
 | 
void | 
remove(int entry)
Remove the specified integer to the bitmap. 
 | 
get, intersection, isEmpty, iterator, size, toBytesvoid clear()
void or(MutableBitmap mutableBitmap)
mutableBitmap - other bitmapint getSizeInBytes()
void add(int entry)
entry - integer to be addedvoid remove(int entry)
entry - integer to be removeCopyright © 2011–2018. All rights reserved.