Liking cljdoc? Tell your friends :D

javax.lang.model.util.Types

Utility methods for operating on types.

Compatibility Note: Methods may be added to this interface in future releases of the platform.

Utility methods for operating on types.

Compatibility Note: Methods may be added to this interface
in future releases of the platform.
raw docstring

as-elementclj

(as-element this t)

Returns the element corresponding to a type. The type may be a DeclaredType or TypeVariable. Returns null if the type is not one with a corresponding element.

t - the type to map to an element - javax.lang.model.type.TypeMirror

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

Returns the element corresponding to a type.
 The type may be a DeclaredType or TypeVariable.
 Returns null if the type is not one with a
 corresponding element.

t - the type to map to an element - `javax.lang.model.type.TypeMirror`

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

as-member-ofclj

(as-member-of this containing element)

Returns the type of an element when that element is viewed as a member of, or otherwise directly contained by, a given type. For example, when viewed as a member of the parameterized type Set<String>, the Set.add method is an ExecutableType whose parameter is of type String.

containing - the containing type - javax.lang.model.type.DeclaredType element - the element - javax.lang.model.element.Element

returns: the type of the element as viewed from the containing type - javax.lang.model.type.TypeMirror

throws: java.lang.IllegalArgumentException - if the element is not a valid one for the given type

Returns the type of an element when that element is viewed as
 a member of, or otherwise directly contained by, a given type.
 For example,
 when viewed as a member of the parameterized type Set<String>,
 the Set.add method is an ExecutableType
 whose parameter is of type String.

containing - the containing type - `javax.lang.model.type.DeclaredType`
element - the element - `javax.lang.model.element.Element`

returns: the type of the element as viewed from the containing type - `javax.lang.model.type.TypeMirror`

throws: java.lang.IllegalArgumentException - if the element is not a valid one for the given type
raw docstring

assignable?clj

(assignable? this t-1 t-2)

Tests whether one type is assignable to another.

t-1 - the first type - javax.lang.model.type.TypeMirror t-2 - the second type - javax.lang.model.type.TypeMirror

returns: true if and only if the first type is assignable to the second - boolean

throws: java.lang.IllegalArgumentException - if given an executable or package type

Tests whether one type is assignable to another.

t-1 - the first type - `javax.lang.model.type.TypeMirror`
t-2 - the second type - `javax.lang.model.type.TypeMirror`

returns: true if and only if the first type is assignable
          to the second - `boolean`

throws: java.lang.IllegalArgumentException - if given an executable or package type
raw docstring

boxed-classclj

(boxed-class this p)

Returns the class of a boxed value of a given primitive type. That is, boxing conversion is applied.

p - the primitive type to be converted - javax.lang.model.type.PrimitiveType

returns: the class of a boxed value of type p - javax.lang.model.element.TypeElement

Returns the class of a boxed value of a given primitive type.
 That is, boxing conversion is applied.

p - the primitive type to be converted - `javax.lang.model.type.PrimitiveType`

returns: the class of a boxed value of type p - `javax.lang.model.element.TypeElement`
raw docstring

captureclj

(capture this t)

Applies capture conversion to a type.

t - the type to be converted - javax.lang.model.type.TypeMirror

returns: the result of applying capture conversion - javax.lang.model.type.TypeMirror

throws: java.lang.IllegalArgumentException - if given an executable or package type

Applies capture conversion to a type.

t - the type to be converted - `javax.lang.model.type.TypeMirror`

returns: the result of applying capture conversion - `javax.lang.model.type.TypeMirror`

throws: java.lang.IllegalArgumentException - if given an executable or package type
raw docstring

containsclj

(contains this t-1 t-2)

Tests whether one type argument contains another.

t-1 - the first type - javax.lang.model.type.TypeMirror t-2 - the second type - javax.lang.model.type.TypeMirror

returns: true if and only if the first type contains the second - boolean

throws: java.lang.IllegalArgumentException - if given an executable or package type

Tests whether one type argument contains another.

t-1 - the first type - `javax.lang.model.type.TypeMirror`
t-2 - the second type - `javax.lang.model.type.TypeMirror`

returns: true if and only if the first type contains the second - `boolean`

throws: java.lang.IllegalArgumentException - if given an executable or package type
raw docstring

direct-supertypesclj

(direct-supertypes this t)

Returns the direct supertypes of a type. The interface types, if any, will appear last in the list.

t - the type being examined - javax.lang.model.type.TypeMirror

returns: the direct supertypes, or an empty list if none - java.util.List<? extends javax.lang.model.type.TypeMirror>

throws: java.lang.IllegalArgumentException - if given an executable or package type

Returns the direct supertypes of a type.  The interface types, if any,
 will appear last in the list.

t - the type being examined - `javax.lang.model.type.TypeMirror`

returns: the direct supertypes, or an empty list if none - `java.util.List<? extends javax.lang.model.type.TypeMirror>`

throws: java.lang.IllegalArgumentException - if given an executable or package type
raw docstring

erasureclj

(erasure this t)

Returns the erasure of a type.

t - the type to be erased - javax.lang.model.type.TypeMirror

returns: the erasure of the given type - javax.lang.model.type.TypeMirror

throws: java.lang.IllegalArgumentException - if given a package type

Returns the erasure of a type.

t - the type to be erased - `javax.lang.model.type.TypeMirror`

returns: the erasure of the given type - `javax.lang.model.type.TypeMirror`

throws: java.lang.IllegalArgumentException - if given a package type
raw docstring

get-array-typeclj

(get-array-type this component-type)

Returns an array type with the specified component type.

component-type - the component type - javax.lang.model.type.TypeMirror

returns: an array type with the specified component type. - javax.lang.model.type.ArrayType

throws: java.lang.IllegalArgumentException - if the component type is not valid for an array

Returns an array type with the specified component type.

component-type - the component type - `javax.lang.model.type.TypeMirror`

returns: an array type with the specified component type. - `javax.lang.model.type.ArrayType`

throws: java.lang.IllegalArgumentException - if the component type is not valid for an array
raw docstring

get-declared-typeclj

(get-declared-type this type-elem type-args)
(get-declared-type this containing type-elem type-args)

Returns the type corresponding to a type element and actual type arguments, given a containing type of which it is a member. The parameterized type Outer<String>.Inner<Number>, for example, may be constructed by first using getDeclaredType(TypeElement, TypeMirror...) to get the type Outer<String>, and then invoking this method.

If the containing type is a parameterized type, the number of type arguments must equal the number of typeElem's formal type parameters. If it is not parameterized or if it is null, this method is equivalent to getDeclaredType(typeElem, typeArgs).

containing - the containing type, or null if none - javax.lang.model.type.DeclaredType type-elem - the type element - javax.lang.model.element.TypeElement type-args - the actual type arguments - javax.lang.model.type.TypeMirror

returns: the type corresponding to the type element and actual type arguments, contained within the given type - javax.lang.model.type.DeclaredType

throws: java.lang.IllegalArgumentException - if too many or too few type arguments are given, or if an inappropriate type argument, type element, or containing type is provided

Returns the type corresponding to a type element
 and actual type arguments, given a
 containing type
 of which it is a member.
 The parameterized type Outer<String>.Inner<Number>,
 for example, may be constructed by first using
 getDeclaredType(TypeElement, TypeMirror...)
 to get the type Outer<String>, and then invoking
 this method.

  If the containing type is a parameterized type,
 the number of type arguments must equal the
 number of typeElem's formal type parameters.
 If it is not parameterized or if it is null, this method is
 equivalent to getDeclaredType(typeElem, typeArgs).

containing - the containing type, or null if none - `javax.lang.model.type.DeclaredType`
type-elem - the type element - `javax.lang.model.element.TypeElement`
type-args - the actual type arguments - `javax.lang.model.type.TypeMirror`

returns: the type corresponding to the type element and
          actual type arguments, contained within the given type - `javax.lang.model.type.DeclaredType`

throws: java.lang.IllegalArgumentException - if too many or too few type arguments are given, or if an inappropriate type argument, type element, or containing type is provided
raw docstring

get-no-typeclj

(get-no-type this kind)

Returns a pseudo-type used where no actual type is appropriate. The kind of type to return may be either VOID or NONE. For packages, use Elements.getPackageElement(CharSequence).asType() instead.

kind - the kind of type to return - javax.lang.model.type.TypeKind

returns: a pseudo-type of kind VOID or NONE - javax.lang.model.type.NoType

throws: java.lang.IllegalArgumentException - if kind is not valid

Returns a pseudo-type used where no actual type is appropriate.
 The kind of type to return may be either
 VOID or NONE.
 For packages, use
 Elements.getPackageElement(CharSequence).asType()
 instead.

kind - the kind of type to return - `javax.lang.model.type.TypeKind`

returns: a pseudo-type of kind VOID or NONE - `javax.lang.model.type.NoType`

throws: java.lang.IllegalArgumentException - if kind is not valid
raw docstring

get-null-typeclj

(get-null-type this)

Returns the null type. This is the type of null.

returns: the null type - javax.lang.model.type.NullType

Returns the null type.  This is the type of null.

returns: the null type - `javax.lang.model.type.NullType`
raw docstring

get-primitive-typeclj

(get-primitive-type this kind)

Returns a primitive type.

kind - the kind of primitive type to return - javax.lang.model.type.TypeKind

returns: a primitive type - javax.lang.model.type.PrimitiveType

throws: java.lang.IllegalArgumentException - if kind is not a primitive kind

Returns a primitive type.

kind - the kind of primitive type to return - `javax.lang.model.type.TypeKind`

returns: a primitive type - `javax.lang.model.type.PrimitiveType`

throws: java.lang.IllegalArgumentException - if kind is not a primitive kind
raw docstring

get-wildcard-typeclj

(get-wildcard-type this extends-bound super-bound)

Returns a new wildcard type argument. Either of the wildcard's bounds may be specified, or neither, but not both.

extends-bound - the extends (upper) bound, or null if none - javax.lang.model.type.TypeMirror super-bound - the super (lower) bound, or null if none - javax.lang.model.type.TypeMirror

returns: a new wildcard - javax.lang.model.type.WildcardType

throws: java.lang.IllegalArgumentException - if bounds are not valid

Returns a new wildcard type argument.  Either of the wildcard's
 bounds may be specified, or neither, but not both.

extends-bound - the extends (upper) bound, or null if none - `javax.lang.model.type.TypeMirror`
super-bound - the super (lower) bound, or null if none - `javax.lang.model.type.TypeMirror`

returns: a new wildcard - `javax.lang.model.type.WildcardType`

throws: java.lang.IllegalArgumentException - if bounds are not valid
raw docstring

same-type?clj

(same-type? this t-1 t-2)

Tests whether two TypeMirror objects represent the same type.

Caveat: if either of the arguments to this method represents a wildcard, this method will return false. As a consequence, a wildcard is not the same type as itself. This might be surprising at first, but makes sense once you consider that an example like this must be rejected by the compiler:

List<?> list = new ArrayList<Object>();
list.add(list.get(0));

Since annotations are only meta-data associated with a type, the set of annotations on either argument is not taken into account when computing whether or not two TypeMirror objects are the same type. In particular, two TypeMirror objects can have different annotations and still be considered the same.

t-1 - the first type - javax.lang.model.type.TypeMirror t-2 - the second type - javax.lang.model.type.TypeMirror

returns: true if and only if the two types are the same - boolean

Tests whether two TypeMirror objects represent the same type.

 Caveat: if either of the arguments to this method represents a
 wildcard, this method will return false.  As a consequence, a wildcard
 is not the same type as itself.  This might be surprising at first,
 but makes sense once you consider that an example like this must be
 rejected by the compiler:


    List<?> list = new ArrayList<Object>();
    list.add(list.get(0));

 Since annotations are only meta-data associated with a type,
 the set of annotations on either argument is not taken
 into account when computing whether or not two TypeMirror objects are the same type. In particular, two
 TypeMirror objects can have different annotations and
 still be considered the same.

t-1 - the first type - `javax.lang.model.type.TypeMirror`
t-2 - the second type - `javax.lang.model.type.TypeMirror`

returns: true if and only if the two types are the same - `boolean`
raw docstring

subsignature?clj

(subsignature? this m-1 m-2)

Tests whether the signature of one method is a subsignature of another.

m-1 - the first method - javax.lang.model.type.ExecutableType m-2 - the second method - javax.lang.model.type.ExecutableType

returns: true if and only if the first signature is a subsignature of the second - boolean

Tests whether the signature of one method is a subsignature
 of another.

m-1 - the first method - `javax.lang.model.type.ExecutableType`
m-2 - the second method - `javax.lang.model.type.ExecutableType`

returns: true if and only if the first signature is a
          subsignature of the second - `boolean`
raw docstring

subtype?clj

(subtype? this t-1 t-2)

Tests whether one type is a subtype of another. Any type is considered to be a subtype of itself.

t-1 - the first type - javax.lang.model.type.TypeMirror t-2 - the second type - javax.lang.model.type.TypeMirror

returns: true if and only if the first type is a subtype of the second - boolean

throws: java.lang.IllegalArgumentException - if given an executable or package type

Tests whether one type is a subtype of another.
 Any type is considered to be a subtype of itself.

t-1 - the first type - `javax.lang.model.type.TypeMirror`
t-2 - the second type - `javax.lang.model.type.TypeMirror`

returns: true if and only if the first type is a subtype
          of the second - `boolean`

throws: java.lang.IllegalArgumentException - if given an executable or package type
raw docstring

unboxed-typeclj

(unboxed-type this t)

Returns the type (a primitive type) of unboxed values of a given type. That is, unboxing conversion is applied.

t - the type to be unboxed - javax.lang.model.type.TypeMirror

returns: the type of an unboxed value of type t - javax.lang.model.type.PrimitiveType

throws: java.lang.IllegalArgumentException - if the given type has no unboxing conversion

Returns the type (a primitive type) of unboxed values of a given type.
 That is, unboxing conversion is applied.

t - the type to be unboxed - `javax.lang.model.type.TypeMirror`

returns: the type of an unboxed value of type t - `javax.lang.model.type.PrimitiveType`

throws: java.lang.IllegalArgumentException - if the given type has no unboxing conversion
raw docstring

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

× close