R - The type of the object returned by the visit*() methodsEX - The exception that the visit*() methods may throwpublic static interface Visitor.TypeVisitor<R,EX extends Throwable>
Java.Types.| Modifier and Type | Method and Description |
|---|---|
R |
visitArrayType(Java.ArrayType at)
Invoked by
Java.ArrayType.accept(Visitor.TypeVisitor) |
R |
visitBasicType(Java.BasicType bt)
Invoked by
Java.BasicType.accept(Visitor.TypeVisitor) |
R |
visitReferenceType(Java.ReferenceType rt)
|
R |
visitRvalueMemberType(Java.RvalueMemberType rmt)
|
R |
visitSimpleType(Java.SimpleType st)
Invoked by
Java.SimpleType.accept(Visitor.TypeVisitor) |
@Nullable R visitArrayType(Java.ArrayType at) throws EX extends Throwable
Java.ArrayType.accept(Visitor.TypeVisitor)@Nullable R visitBasicType(Java.BasicType bt) throws EX extends Throwable
Java.BasicType.accept(Visitor.TypeVisitor)@Nullable R visitReferenceType(Java.ReferenceType rt) throws EX extends Throwable
@Nullable R visitRvalueMemberType(Java.RvalueMemberType rmt) throws EX extends Throwable
@Nullable R visitSimpleType(Java.SimpleType st) throws EX extends Throwable
Java.SimpleType.accept(Visitor.TypeVisitor)