Package | Description |
---|---|
com.sun.mirror.declaration |
Interfaces used to model program element declarations.
|
com.sun.mirror.type |
Interfaces used to model types.
|
com.sun.mirror.util |
Utilities to assist in the processing of declarations and types.
|
Modifier and Type | Method and Description |
---|---|
TypeMirror |
MethodDeclaration.getReturnType()
Deprecated.
Returns the formal return type of this method.
|
TypeMirror |
FieldDeclaration.getType()
Deprecated.
Returns the type of this field.
|
TypeMirror |
ParameterDeclaration.getType()
Deprecated.
Returns the type of this parameter.
|
Modifier and Type | Interface and Description |
---|---|
interface |
AnnotationType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is included in
DeclaredType . |
interface |
ArrayType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is
ArrayType . |
interface |
ClassType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is included in
DeclaredType . |
interface |
DeclaredType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is included in
DeclaredType . |
interface |
EnumType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is included in
DeclaredType . |
interface |
InterfaceType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is included in
DeclaredType . |
interface |
PrimitiveType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is
PrimitiveType . |
interface |
ReferenceType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is
ReferenceType . |
interface |
TypeVariable
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is
TypeVariable . |
interface |
VoidType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is included in
NoType . |
interface |
WildcardType
Deprecated.
All components of this API have been superseded by the
standardized annotation processing API. The replacement for the
functionality of this interface is
WildcardType . |
Modifier and Type | Method and Description |
---|---|
TypeMirror |
ArrayType.getComponentType()
Deprecated.
Returns the component type of this array type.
|
TypeMirror |
MirroredTypeException.getTypeMirror()
Deprecated.
Returns the type mirror corresponding to the type being accessed.
|
Modifier and Type | Method and Description |
---|---|
Collection<TypeMirror> |
DeclaredType.getActualTypeArguments()
Deprecated.
Returns (in order) the actual type arguments of this type.
|
Collection<TypeMirror> |
MirroredTypesException.getTypeMirrors()
Deprecated.
Returns the type mirrors corresponding to the types being accessed.
|
Constructor and Description |
---|
MirroredTypeException(TypeMirror type)
Deprecated.
Constructs a new MirroredTypeException for the specified type.
|
Constructor and Description |
---|
MirroredTypesException(Collection<TypeMirror> types)
Deprecated.
Constructs a new MirroredTypesException for the specified types.
|
Modifier and Type | Method and Description |
---|---|
TypeMirror |
Types.getErasure(TypeMirror t)
Deprecated.
Returns the erasure of a type.
|
Modifier and Type | Method and Description |
---|---|
ArrayType |
Types.getArrayType(TypeMirror componentType)
Deprecated.
Returns an array type with the specified component type.
|
DeclaredType |
Types.getDeclaredType(DeclaredType containing,
TypeDeclaration decl,
TypeMirror... typeArgs)
Deprecated.
Returns the type corresponding to a type declaration
and actual arguments, given a
containing type
of which it is a member.
|
DeclaredType |
Types.getDeclaredType(TypeDeclaration decl,
TypeMirror... typeArgs)
Deprecated.
Returns the type corresponding to a type declaration and
actual type arguments.
|
TypeMirror |
Types.getErasure(TypeMirror t)
Deprecated.
Returns the erasure of a type.
|
boolean |
Types.isAssignable(TypeMirror t1,
TypeMirror t2)
Deprecated.
Tests whether one type is assignable to another.
|
boolean |
Types.isSubtype(TypeMirror t1,
TypeMirror t2)
Deprecated.
Tests whether one type is a subtype of the another.
|
void |
SimpleTypeVisitor.visitTypeMirror(TypeMirror t)
Deprecated.
Visits a type mirror.
|
void |
TypeVisitor.visitTypeMirror(TypeMirror t)
Deprecated.
Visits a type mirror.
|
Copyright © 2004, 2015, Oracle and/or its affiliates. All rights reserved.