Uses of Interface
com.sun.mirror.type.TypeMirror
Packages that use TypeMirror
Package
Description
Interfaces used to model program element declarations.
Interfaces used to model types.
Utilities to assist in the processing of declarations and types.
-
Uses of TypeMirror in com.sun.mirror.declaration
Methods in com.sun.mirror.declaration that return TypeMirrorModifier and TypeMethodDescriptionMethodDeclaration.getReturnType()Returns the formal return type of this method.FieldDeclaration.getType()Returns the type of this field.ParameterDeclaration.getType()Returns the type of this parameter. -
Uses of TypeMirror in com.sun.mirror.type
Subinterfaces of TypeMirror in com.sun.mirror.typeModifier and TypeInterfaceDescriptioninterfaceRepresents an annotation type.interfaceRepresents an array type.interfaceRepresents a class type.interfaceRepresents a declared type, either a class type or an interface type.interfaceRepresents an enum type.interfaceRepresents an interface type.interfaceRepresents a primitive type.interfaceRepresents a reference type.interfaceRepresents a type variable.interfaceA pseudo-type representing the type ofvoid.interfaceRepresents a wildcard type argument.Methods in com.sun.mirror.type that return TypeMirrorModifier and TypeMethodDescriptionArrayType.getComponentType()Returns the component type of this array type.MirroredTypeException.getTypeMirror()Returns the type mirror corresponding to the type being accessed.Methods in com.sun.mirror.type that return types with arguments of type TypeMirrorModifier and TypeMethodDescriptionDeclaredType.getActualTypeArguments()Returns (in order) the actual type arguments of this type.MirroredTypesException.getTypeMirrors()Returns the type mirrors corresponding to the types being accessed.Constructors in com.sun.mirror.type with parameters of type TypeMirrorModifierConstructorDescriptionConstructs a new MirroredTypeException for the specified type.Constructor parameters in com.sun.mirror.type with type arguments of type TypeMirrorModifierConstructorDescriptionConstructs a new MirroredTypesException for the specified types. -
Uses of TypeMirror in com.sun.mirror.util
Methods in com.sun.mirror.util that return TypeMirrorMethods in com.sun.mirror.util with parameters of type TypeMirrorModifier and TypeMethodDescriptionTypes.getArrayType(TypeMirror componentType) Returns an array type with the specified component type.Types.getDeclaredType(TypeDeclaration decl, TypeMirror... typeArgs) Returns the type corresponding to a type declaration and actual type arguments.Types.getDeclaredType(DeclaredType containing, TypeDeclaration decl, TypeMirror... typeArgs) Returns the type corresponding to a type declaration and actual arguments, given a containing type of which it is a member.Types.getErasure(TypeMirror t) Returns the erasure of a type.booleanTypes.isAssignable(TypeMirror t1, TypeMirror t2) Tests whether one type is assignable to another.booleanTypes.isSubtype(TypeMirror t1, TypeMirror t2) Tests whether one type is a subtype of the another.voidSimpleTypeVisitor.visitTypeMirror(TypeMirror t) Visits a type mirror.voidTypeVisitor.visitTypeMirror(TypeMirror t) Visits a type mirror.