Represents a wildcard type argument. Examples include:
? ? extends Number ? super T
A wildcard may have its upper bound explicitly set by an extends clause, its lower bound explicitly set by a super clause, or neither (but not both).
Represents a wildcard type argument. Examples include: ? ? extends Number ? super T A wildcard may have its upper bound explicitly set by an extends clause, its lower bound explicitly set by a super clause, or neither (but not both).
(get-extends-bound this)
Returns the upper bound of this wildcard. If no upper bound is explicitly declared, null is returned.
returns: the upper bound of this wildcard - javax.lang.model.type.TypeMirror
Returns the upper bound of this wildcard. If no upper bound is explicitly declared, null is returned. returns: the upper bound of this wildcard - `javax.lang.model.type.TypeMirror`
(get-super-bound this)
Returns the lower bound of this wildcard. If no lower bound is explicitly declared, null is returned.
returns: the lower bound of this wildcard - javax.lang.model.type.TypeMirror
Returns the lower bound of this wildcard. If no lower bound is explicitly declared, null is returned. returns: the lower bound of this wildcard - `javax.lang.model.type.TypeMirror`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close