Interface BloomFilter<T extends BloomFilter<T>>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int SPARSE
      The sparse characteristic used to determine the best method for matching: 1.
    • Method Summary

      All Methods Instance Methods Abstract Methods Default Methods 
      Modifier and Type Method Description
      int cardinality()
      Gets the cardinality (number of enabled bits) of this Bloom filter.
      int characteristics()
      Gets the characteristics of the filter.
      void clear()
      Clears the filter to by resetting it to its initial, unpopulated state.
      default boolean contains​(BitMapExtractor bitMapExtractor)
      Returns true if this filter contains the bits specified in the bit maps produced by the bitMapExtractor.
      default boolean contains​(BloomFilter<?> other)
      Returns true if this filter contains the specified filter.
      default boolean contains​(Hasher hasher)
      Returns true if this filter contains the bits specified in the hasher.
      boolean contains​(IndexExtractor indexExtractor)
      Returns true if this filter contains the indices specified IndexExtractor.
      T copy()
      Creates a new instance of this BloomFilter with the same properties as the current one.
      default int estimateIntersection​(BloomFilter<?> other)
      Estimates the number of items in the intersection of this Bloom filter with the other bloom filter.
      default int estimateN()
      Estimates the number of items in the Bloom filter.
      default int estimateUnion​(BloomFilter<?> other)
      Estimates the number of items in the union of this Bloom filter with the other bloom filter.
      Shape getShape()
      Gets the shape that was used when the filter was built.
      default boolean isEmpty()
      Determines if all the bits are off.
      default boolean isFull()
      Determines if the bloom filter is "full".
      boolean merge​(BitMapExtractor bitMapExtractor)
      Merges the specified hasher into this Bloom filter.
      default boolean merge​(BloomFilter<?> other)
      Merges the specified Bloom filter into this Bloom filter.
      default boolean merge​(Hasher hasher)
      Merges the specified hasher into this Bloom filter.
      boolean merge​(IndexExtractor indexExtractor)
      Merges the specified IndexExtractor into this Bloom filter.
      default IndexExtractor uniqueIndices()
      Most Bloom filters create unique IndexExtractors.
    • Field Detail

      • SPARSE

        static final int SPARSE
        The sparse characteristic used to determine the best method for matching: 1.

        For `sparse` implementations the forEachIndex(IntConsumer consumer) method is more efficient. For non `sparse` implementations the forEachBitMap(LongConsumer consumer) is more efficient. Implementers should determine if it is easier.

        See Also:
        Constant Field Values
    • Method Detail

      • cardinality

        int cardinality()
        Gets the cardinality (number of enabled bits) of this Bloom filter.

        This is also known as the Hamming value or Hamming number.

        Returns:
        the cardinality of this filter
      • characteristics

        int characteristics()
        Gets the characteristics of the filter.

        Characteristics are defined as bits within the characteristics integer.

        Returns:
        the characteristics for this bloom filter.
      • clear

        void clear()
        Clears the filter to by resetting it to its initial, unpopulated state.
      • contains

        default boolean contains​(BitMapExtractor bitMapExtractor)
        Returns true if this filter contains the bits specified in the bit maps produced by the bitMapExtractor.
        Parameters:
        bitMapExtractor - the BitMapExtractor to provide the bit maps.
        Returns:
        true if this filter is enabled for all bits specified by the bit maps
      • contains

        default boolean contains​(BloomFilter<?> other)
        Returns true if this filter contains the specified filter.

        Specifically this returns true if this filter is enabled for all bits that are enabled in the other filter. Using the bit representations this is effectively (this AND other) == other.

        Parameters:
        other - the other Bloom filter
        Returns:
        true if all enabled bits in the other filter are enabled in this filter.
      • contains

        default boolean contains​(Hasher hasher)
        Returns true if this filter contains the bits specified in the hasher.

        Specifically this returns true if this filter is enabled for all bit indexes identified by the hasher. Using the bit map representations this is effectively (this AND hasher) == hasher.

        Parameters:
        hasher - the hasher to provide the indexes
        Returns:
        true if this filter is enabled for all bits specified by the hasher
      • contains

        boolean contains​(IndexExtractor indexExtractor)
        Returns true if this filter contains the indices specified IndexExtractor.

        Specifically this returns true if this filter is enabled for all bit indexes identified by the IndexExtractor.

        Parameters:
        indexExtractor - the IndexExtractor to provide the indexes
        Returns:
        true if this filter is enabled for all bits specified by the IndexExtractor
      • copy

        T copy()
        Creates a new instance of this BloomFilter with the same properties as the current one.
        Returns:
        a copy of this BloomFilter.
      • estimateIntersection

        default int estimateIntersection​(BloomFilter<?> other)
        Estimates the number of items in the intersection of this Bloom filter with the other bloom filter.

        This method produces estimate is roughly equivalent to the number of unique Hashers that have been merged into both of the filters by rounding the value from the calculation described in the Shape class Javadoc.

        estimateIntersection should only be called with Bloom filters of the same Shape. If called on Bloom filters of differing shape this method is not symmetric. If other has more bits an IllegalArgumentException may be thrown.

        Parameters:
        other - The other Bloom filter
        Returns:
        an estimate of the number of items in the intersection. If the calculated estimate is larger than Integer.MAX_VALUE then MAX_VALUE is returned.
        Throws:
        java.lang.IllegalArgumentException - if the estimated N for the union of the filters is infinite.
        See Also:
        estimateN(), Shape
      • estimateN

        default int estimateN()
        Estimates the number of items in the Bloom filter.

        By default this is the rounding of the Shape.estimateN(cardinality) calculation for the shape and cardinality of this filter.

        This produces an estimate roughly equivalent to the number of Hashers that have been merged into the filter by rounding the value from the calculation described in the Shape class Javadoc.

        Note:

        • if cardinality == numberOfBits, then result is Integer.MAX_VALUE.
        • if cardinality > numberOfBits, then an IllegalArgumentException is thrown.
        Returns:
        an estimate of the number of items in the bloom filter. Will return Integer.MAX_VALUE if the estimate is larger than Integer.MAX_VALUE.
        Throws:
        java.lang.IllegalArgumentException - if the cardinality is > numberOfBits as defined in Shape.
        See Also:
        Shape.estimateN(int), Shape
      • estimateUnion

        default int estimateUnion​(BloomFilter<?> other)
        Estimates the number of items in the union of this Bloom filter with the other bloom filter.

        This produces an estimate roughly equivalent to the number of unique Hashers that have been merged into either of the filters by rounding the value from the calculation described in the Shape class Javadoc.

        estimateUnion should only be called with Bloom filters of the same Shape. If called on Bloom filters of differing shape this method is not symmetric. If other has more bits an IllegalArgumentException may be thrown.

        Parameters:
        other - The other Bloom filter
        Returns:
        an estimate of the number of items in the union. Will return Integer.MAX_VALUE if the estimate is larger than Integer.MAX_VALUE.
        See Also:
        estimateN(), Shape
      • getShape

        Shape getShape()
        Gets the shape that was used when the filter was built.
        Returns:
        The shape the filter was built with.
      • isEmpty

        default boolean isEmpty()
        Determines if all the bits are off. This is equivalent to cardinality() == 0.

        Note: This method is optimized for non-sparse filters. Implementers are encouraged to implement faster checks if possible.

        Returns:
        true if no bits are enabled, false otherwise.
      • isFull

        default boolean isFull()
        Determines if the bloom filter is "full".

        Full is defined as having no unset bits.

        Returns:
        true if the filter is full, false otherwise.
      • merge

        boolean merge​(BitMapExtractor bitMapExtractor)
        Merges the specified hasher into this Bloom filter. Specifically all bit indexes that are identified by the bitMapExtractor will be enabled in this filter.

        Note: This method should return true even if no additional bit indexes were enabled. A false result indicates that this filter may or may not contain all the indexes enabled in the bitMapExtractor. This state may occur in complex Bloom filter implementations like counting Bloom filters.

        Parameters:
        bitMapExtractor - The BitMapExtractor to merge.
        Returns:
        true if the merge was successful
        Throws:
        java.lang.IllegalArgumentException - if bitMapExtractor sends illegal value.
      • merge

        default boolean merge​(BloomFilter<?> other)
        Merges the specified Bloom filter into this Bloom filter.

        Specifically all bit indexes that are identified by the other will be enabled in this filter.

        Note: This method should return true even if no additional bit indexes were enabled. A false result indicates that this filter may or may not contain the other Bloom filter. This state may occur in complex Bloom filter implementations like counting Bloom filters.

        Parameters:
        other - The bloom filter to merge into this one.
        Returns:
        true if the merge was successful
      • merge

        default boolean merge​(Hasher hasher)
        Merges the specified hasher into this Bloom filter. Specifically all bit indexes that are identified by the hasher will be enabled in this filter.

        Note: This method should return true even if no additional bit indexes were enabled. A false result indicates that this filter may or may not contain the hasher values. This state may occur in complex Bloom filter implementations like counting Bloom filters.

        Parameters:
        hasher - The hasher to merge.
        Returns:
        true if the merge was successful
        Throws:
        java.lang.IllegalArgumentException - if hasher produces an illegal value.
      • merge

        boolean merge​(IndexExtractor indexExtractor)
        Merges the specified IndexExtractor into this Bloom filter. Specifically all bit indexes that are identified by the indexExtractor will be enabled in this filter.

        Note: This method should return true even if no additional bit indexes were enabled. A false result indicates that this filter may or may not contain all the indexes of the indexExtractor. This state may occur in complex Bloom filter implementations like counting Bloom filters.

        Parameters:
        indexExtractor - The IndexExtractor to merge.
        Returns:
        true if the merge was successful
        Throws:
        java.lang.IllegalArgumentException - if indexExtractor sends illegal value.