Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Oct 18, 2024
1 parent 5f09d49 commit ff0dc60
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,10 @@
public interface BloomFilter<T extends BloomFilter<T>> extends IndexExtractor, BitMapExtractor {

/**
* The sparse characteristic used to determine the best method for matching.
* The sparse characteristic used to determine the best method for matching: {@value}.
* <p>For `sparse` implementations
* the {@code forEachIndex(IntConsumer consumer)} method is more efficient. For non `sparse` implementations
* the {@code forEachBitMap(LongConsumer consumer)} is more efficient. Implementers should determine if it is easier
* for the implementation to produce indexes of bit map blocks.</p>
*/
int SPARSE = 0x1;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
final class IndexUtils {

/**
* The maximum array size for the methods in this class.
* The maximum array size for the methods in this class: {@value}.
*/
static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;

Expand Down

0 comments on commit ff0dc60

Please sign in to comment.