Establishing an upper bound for a wildcard
<? extends superclass>
Specifying a lower bound for a wildcard
<? super subclass>
Here is the syntax for a generic method:
<type-param-list> return-type meth-name(param-list)