Package org.codehaus.janino
Class Java.ReferenceType
- java.lang.Object
-
- org.codehaus.janino.Java.Located
-
- org.codehaus.janino.Java.Atom
-
- org.codehaus.janino.Java.Type
-
- org.codehaus.janino.Java.ReferenceType
-
- All Implemented Interfaces:
Java.Locatable
,Java.TypeArgument
- Enclosing class:
- Java
public static final class Java.ReferenceType extends Java.Type implements Java.TypeArgument
Representation of a JLS7 4.3 reference type.
-
-
Field Summary
Fields Modifier and Type Field Description Java.Annotation[]
annotations
The "type annotations" of this type, see JLS9, 9.7.4.java.lang.String[]
identifiers
The list of (dot-separated) identifiers that pose the reference type, e.g.Java.TypeArgument[]
typeArguments
The optional type arguments of the reference type.-
Fields inherited from class org.codehaus.janino.Java.Located
NOWHERE
-
-
Constructor Summary
Constructors Constructor Description ReferenceType(Location location, Java.Annotation[] annotations, java.lang.String[] identifiers, Java.TypeArgument[] typeArguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,EX extends java.lang.Throwable>
Raccept(Visitor.AtomVisitor<R,EX> visitor)
<R,EX extends java.lang.Throwable>
Raccept(Visitor.TypeArgumentVisitor<R,EX> visitor)
Invokes the "visit...()
" method ofVisitor.TypeArgumentVisitor
for the concreteJava.TypeArgument
type.<R,EX extends java.lang.Throwable>
Raccept(Visitor.TypeVisitor<R,EX> visitor)
void
setEnclosingScope(Java.Scope enclosingScope)
Sets the enclosing scope for this object and all subordinateJava.Type
objects.java.lang.String
toString()
-
Methods inherited from class org.codehaus.janino.Java.Type
getEnclosingScope, toType
-
Methods inherited from class org.codehaus.janino.Java.Atom
toLvalue, toLvalueOrCompileException, toRvalue, toRvalueOrCompileException, toTypeOrCompileException
-
Methods inherited from class org.codehaus.janino.Java.Located
getLocation, throwCompileException
-
-
-
-
Field Detail
-
annotations
public final Java.Annotation[] annotations
The "type annotations" of this type, see JLS9, 9.7.4.
-
identifiers
public final java.lang.String[] identifiers
The list of (dot-separated) identifiers that pose the reference type, e.g. "java", "util", "Map".
-
typeArguments
@Nullable public final Java.TypeArgument[] typeArguments
The optional type arguments of the reference type.
-
-
Constructor Detail
-
ReferenceType
public ReferenceType(Location location, Java.Annotation[] annotations, java.lang.String[] identifiers, @Nullable Java.TypeArgument[] typeArguments)
-
-
Method Detail
-
setEnclosingScope
public void setEnclosingScope(Java.Scope enclosingScope)
Description copied from class:Java.Type
Sets the enclosing scope for this object and all subordinateJava.Type
objects.- Specified by:
setEnclosingScope
in interfaceJava.TypeArgument
- Overrides:
setEnclosingScope
in classJava.Type
-
accept
@Nullable public <R,EX extends java.lang.Throwable> R accept(Visitor.AtomVisitor<R,EX> visitor) throws EX extends java.lang.Throwable
Description copied from class:Java.Atom
-
accept
@Nullable public <R,EX extends java.lang.Throwable> R accept(Visitor.TypeVisitor<R,EX> visitor) throws EX extends java.lang.Throwable
Description copied from class:Java.Type
-
accept
@Nullable public <R,EX extends java.lang.Throwable> R accept(Visitor.TypeArgumentVisitor<R,EX> visitor) throws EX extends java.lang.Throwable
Description copied from interface:Java.TypeArgument
Invokes the "visit...()
" method ofVisitor.TypeArgumentVisitor
for the concreteJava.TypeArgument
type.- Specified by:
accept
in interfaceJava.TypeArgument
- Throws:
EX extends java.lang.Throwable
-
-