Changed Methods |
boolean apply(T extends Object )
|
Change in signature from T to (T extends Object ).
|
Provided only to satisfy the {@link Predicate} interface; use {@link #mightContain} instead. |
boolean equals(Object )
|
Change in signature from Object to java.lang.Object .
|
|
boolean mightContain(T extends Object )
|
Change in signature from T to (T extends Object ).
|
Returns {@code true} if the element might have been put in this Bloom filter, {@code
false} if this is definitely not the case. |
boolean put(T extends Object )
|
Change in signature from T to (T extends Object ).
|
Puts an element into this {@code BloomFilter}. |