Methods Summary |
---|
public R | visit(javax.lang.model.type.TypeMirror t, P p)Visits a type.
|
public R | visit(javax.lang.model.type.TypeMirror t)A convenience method equivalent to {@code v.visit(t, null)}.
|
public R | visitArray(javax.lang.model.type.ArrayType t, P p)Visits an array type.
|
public R | visitDeclared(javax.lang.model.type.DeclaredType t, P p)Visits a declared type.
|
public R | visitError(javax.lang.model.type.ErrorType t, P p)Visits an error type.
|
public R | visitExecutable(javax.lang.model.type.ExecutableType t, P p)Visits an executable type.
|
public R | visitNoType(javax.lang.model.type.NoType t, P p)Visits a {@link NoType} instance.
|
public R | visitNull(javax.lang.model.type.NullType t, P p)Visits the null type.
|
public R | visitPrimitive(javax.lang.model.type.PrimitiveType t, P p)Visits a primitive type.
|
public R | visitTypeVariable(javax.lang.model.type.TypeVariable t, P p)Visits a type variable.
|
public R | visitUnknown(javax.lang.model.type.TypeMirror t, P p)Visits an unknown kind of type.
This can occur if the language evolves and new kinds
of types are added to the {@code TypeMirror} hierarchy.
|
public R | visitWildcard(javax.lang.model.type.WildcardType t, P p)Visits a wildcard type.
|