Package org.codehaus.janino
Interface Visitor.TypeArgumentVisitor<R,EX extends java.lang.Throwable>
-
- Type Parameters:
R- The type of the object returned by thevisit*()methodsEX- The exception that thevisit*()methods may throw
- Enclosing class:
- Visitor
public static interface Visitor.TypeArgumentVisitor<R,EX extends java.lang.Throwable>The visitor for all kinds ofJava.TypeArguments.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RvisitArrayType(Java.ArrayType arrayType)RvisitReferenceType(Java.ReferenceType rt)RvisitWildcard(Java.Wildcard w)
-
-
-
Method Detail
-
visitWildcard
@Nullable R visitWildcard(Java.Wildcard w) throws EX extends java.lang.Throwable
- Throws:
EX extends java.lang.Throwable
-
visitReferenceType
@Nullable R visitReferenceType(Java.ReferenceType rt) throws EX extends java.lang.Throwable
- Throws:
EX extends java.lang.Throwable
-
visitArrayType
@Nullable R visitArrayType(Java.ArrayType arrayType) throws EX extends java.lang.Throwable
- Throws:
EX extends java.lang.Throwable
-
-