Java - Parameterized Type
Table of Contents
About
A parameterized type is the declaration or instantiation of a generic type
Articles Related
Example
From the predicate generic interface
interface Predicate<T> {
boolean test(T t);
}
The parameterized type of an person object, Predicate<Person> would be the following:
interface Predicate<Person> {
boolean test(Person t);
}