Liking cljdoc? Tell your friends :D

javax.lang.model.type.TypeVariable

Represents a type variable. A type variable may be explicitly declared by a javax.lang.model.element.type parameter of a type, method, or constructor. A type variable may also be declared implicitly, as by the capture conversion of a wildcard type argument (see chapter 5 of The Java™ Language Specification).

Represents a type variable.
A type variable may be explicitly declared by a
javax.lang.model.element.type parameter of a
type, method, or constructor.
A type variable may also be declared implicitly, as by
the capture conversion of a wildcard type argument
(see chapter 5 of
The Java™ Language Specification).
raw docstring

as-elementclj

(as-element this)

Returns the element corresponding to this type variable.

returns: the element corresponding to this type variable - javax.lang.model.element.Element

Returns the element corresponding to this type variable.

returns: the element corresponding to this type variable - `javax.lang.model.element.Element`
raw docstring

get-lower-boundclj

(get-lower-bound this)

Returns the lower bound of this type variable. While a type parameter cannot include an explicit lower bound declaration, capture conversion can produce a type variable with a non-trivial lower bound. Type variables otherwise have a lower bound of NullType.

returns: the lower bound of this type variable - javax.lang.model.type.TypeMirror

Returns the lower bound of this type variable.  While a type
 parameter cannot include an explicit lower bound declaration,
 capture conversion can produce a type variable with a
 non-trivial lower bound.  Type variables otherwise have a
 lower bound of NullType.

returns: the lower bound of this type variable - `javax.lang.model.type.TypeMirror`
raw docstring

get-upper-boundclj

(get-upper-bound this)

Returns the upper bound of this type variable.

If this type variable was declared with no explicit upper bounds, the result is java.lang.Object. If it was declared with multiple upper bounds, the result is an javax.lang.model.type.intersection type; individual bounds can be found by examining the result's bounds.

returns: the upper bound of this type variable - javax.lang.model.type.TypeMirror

Returns the upper bound of this type variable.

  If this type variable was declared with no explicit
 upper bounds, the result is java.lang.Object.
 If it was declared with multiple upper bounds,
 the result is an javax.lang.model.type.intersection type;
 individual bounds can be found by examining the result's
 bounds.

returns: the upper bound of this type variable - `javax.lang.model.type.TypeMirror`
raw docstring

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

× close