Add generic Javadoc parameter
This commit is contained in:
parent
541300f23a
commit
bc99097b11
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue