|
Préférences
Moteurs de recherche
|
||||||||||||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.6.0
javax.lang.model.type
|
|||||||||||||||||||||||||||
| Method Summary | |
|---|---|
R |
visit(TypeMirror t)
A convenience method equivalent to v.visit(t, null). |
R |
visit(TypeMirror t,
P p)
Visits a type. |
R |
visitArray(ArrayType t,
P p)
Visits an array type. |
R |
visitDeclared(DeclaredType t,
P p)
Visits a declared type. |
R |
visitError(ErrorType t,
P p)
Visits an error type. |
R |
visitExecutable(ExecutableType t,
P p)
Visits an executable type. |
R |
visitNoType(NoType t,
P p)
Visits a NoType instance. |
R |
visitNull(NullType t,
P p)
Visits the null type. |
R |
visitPrimitive(PrimitiveType t,
P p)
Visits a primitive type. |
R |
visitTypeVariable(TypeVariable t,
P p)
Visits a type variable. |
R |
visitUnknown(TypeMirror t,
P p)
Visits an unknown kind of type. |
R |
visitWildcard(WildcardType t,
P p)
Visits a wildcard type. |
| Method Detail |
|---|
R visit(TypeMirror t, P p)
t - the type to visitp - a visitor-specified parameter
R visit(TypeMirror t)
v.visit(t, null).
t - the element to visit
R visitPrimitive(PrimitiveType t, P p)
t - the type to visitp - a visitor-specified parameter
R visitNull(NullType t, P p)
t - the type to visitp - a visitor-specified parameter
R visitArray(ArrayType t, P p)
t - the type to visitp - a visitor-specified parameter
R visitDeclared(DeclaredType t, P p)
t - the type to visitp - a visitor-specified parameter
R visitError(ErrorType t, P p)
t - the type to visitp - a visitor-specified parameter
R visitTypeVariable(TypeVariable t, P p)
t - the type to visitp - a visitor-specified parameter
R visitWildcard(WildcardType t, P p)
t - the type to visitp - a visitor-specified parameter
R visitExecutable(ExecutableType t, P p)
t - the type to visitp - a visitor-specified parameter
R visitNoType(NoType t, P p)
NoType instance.
t - the type to visitp - a visitor-specified parameter
R visitUnknown(TypeMirror t, P p)
TypeMirror hierarchy.
t - the type to visitp - a visitor-specified parameter
UnknownTypeException - a visitor implementation may optionally throw this exception