Table of Contents

About

A parameterized type is the declaration or instantiation of a generic type

Example

From the predicate generic interface

interface Predicate<T> {
    boolean test(T t);
}

The parameterized type of an person object, Predicate

'' would be the following:
interface Predicate<Person> {
    boolean test(Person t);
}