Add generic Javadoc parameter

This commit is contained in:
Gary Gregory 2024-06-23 08:43:02 -04:00
parent 541300f23a
commit bc99097b11
2 changed files with 2 additions and 0 deletions

View File

@ -26,6 +26,7 @@ import org.apache.commons.collections4.Transformer;
/**
* Predicate implementation that returns the result of a transformer.
*
* @param <T> the type of the input to the predicate.
* @since 3.0
*/
public final class TransformerPredicate<T> implements Predicate<T>, Serializable {

View File

@ -23,6 +23,7 @@ import org.apache.commons.collections4.Predicate;
/**
* Predicate implementation that always returns true.
*
* @param <T> the type of the input to the predicate.
* @since 3.0
*/
public final class TruePredicate<T> implements Predicate<T>, Serializable {