public interface WildcardType implements TypeMirror
Represents a wildcard type argument.
Examples include:
?
? extends Number
? super T
A wildcard may have its upper bound explicitly set by an
{@code extends} clause, its lower bound explicitly set by a
{@code super} clause, or neither (but not both).