Class BoundedReferenceType

java.lang.Object
All Implemented Interfaces:
AnnotatedElement, Traceable, TypeVariableDeclaringElement

public class BoundedReferenceType extends ReferenceType
A BoundedReferenceType is the result of a generics wildcard expression ? extends String, ? super Foo etc.. The "signature" for a bounded reference type follows the generic signature specification in section 4.4 of JVM spec: *,+,- plus signature strings. The bound may be a type variable (e.g. ? super T)
Author:
Adrian Colyer, Andy Clement