com.sun.mirror.util
public interface TypeVisitor
accept
method,
the most specific visitXxx method applicable to
that type is invoked.Modifier and Type | Method and Description |
---|---|
void |
visitAnnotationType(AnnotationType t)
Visits an annotation type.
|
void |
visitArrayType(ArrayType t)
Visits an array type.
|
void |
visitClassType(ClassType t)
Visits a class type.
|
void |
visitDeclaredType(DeclaredType t)
Visits a declared type.
|
void |
visitEnumType(EnumType t)
Visits an enum type.
|
void |
visitInterfaceType(InterfaceType t)
Visits an interface type.
|
void |
visitPrimitiveType(PrimitiveType t)
Visits a primitive type.
|
void |
visitReferenceType(ReferenceType t)
Visits a reference type.
|
void |
visitTypeMirror(TypeMirror t)
Visits a type mirror.
|
void |
visitTypeVariable(TypeVariable t)
Visits a type variable.
|
void |
visitVoidType(VoidType t)
Visits a void type.
|
void |
visitWildcardType(WildcardType t)
Visits a wildcard.
|
void visitTypeMirror(TypeMirror t)
t
- the type to visitvoid visitPrimitiveType(PrimitiveType t)
t
- the type to visitvoid visitVoidType(VoidType t)
t
- the type to visitvoid visitReferenceType(ReferenceType t)
t
- the type to visitvoid visitDeclaredType(DeclaredType t)
t
- the type to visitvoid visitClassType(ClassType t)
t
- the type to visitvoid visitEnumType(EnumType t)
t
- the type to visitvoid visitInterfaceType(InterfaceType t)
t
- the type to visitvoid visitAnnotationType(AnnotationType t)
t
- the type to visitvoid visitArrayType(ArrayType t)
t
- the type to visitvoid visitTypeVariable(TypeVariable t)
t
- the type to visitvoid visitWildcardType(WildcardType t)
t
- the type to visit Copyright © 2004, 2013, Oracle and/or its affiliates. All rights reserved.