Liking cljdoc? Tell your friends :D

javax.lang.model.type.WildcardType

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).
raw docstring

get-extends-boundclj

(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`
raw docstring

get-super-boundclj

(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`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close