Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,11 @@ public UserDefinedPredicate() { }

/**
* Return true to keep the record with this value, false to drop it.
* <p>
* This method shall handle {@code null} values returning whether this user defined predicate accepts {@code null}
* values or not.
*
* @param value a value
* @param value a value (might be {@code null})
* @return true to keep the record with the value, false to drop it
*/
public abstract boolean keep(T value);
Expand Down