Annotation Type | Description |
---|---|
ClassBound |
This represents a Class<T> object where the upper bound of the value of T
is known.
|
ClassVal |
This represents a Class<T> object where the exact value of T is known.
|
ClassValBottom |
Represents the bottom of the ClassVal qualifier hierarchy.
|
MethodVal |
This represents a Method object where the upper bound of the Class it is a
member of, the exact name of the method, and the number of parameters the
method takes, are known.
|
MethodValBottom |
Represents the bottom of the MethodVal qualifier hierarchy.
|
UnknownClass |
Represents an object with an Unknown Class value, this could be a non-Class
value or the result of a method invocation that is not handled by this
checker or a Class variable that has not yet bee initialized to anything.
|
UnknownMethod |
Represents an object with an Unknown Method value, this could be a non-Method
object or the result of a method invocation that is not handled by this
checker (only handled getMethod() and getDeclaredMethod()) or a Method
variable that has not yet been initialized to anything.
|