Java javax.lang.model.util Types fields, constructors, methods, implement or subclass

Example usage for Java javax.lang.model.util Types fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.lang.model.util Types.

The text is from its open source code.

Method

ElementasElement(TypeMirror t)
Returns the element corresponding to a type.
TypeMirrorerasure(TypeMirror t)
Returns the erasure of a type.
DeclaredTypegetDeclaredType(TypeElement typeElem, TypeMirror... typeArgs)
Returns the type corresponding to a type element and actual type arguments.
PrimitiveTypegetPrimitiveType(TypeKind kind)
Returns a primitive type.
WildcardTypegetWildcardType(TypeMirror extendsBound, TypeMirror superBound)
Returns a new wildcard type argument.
booleanisAssignable(TypeMirror t1, TypeMirror t2)
Tests whether one type is assignable to another.
booleanisSubtype(TypeMirror t1, TypeMirror t2)
Tests whether one type is a subtype of another.