Uses of Class
org.codehaus.janino.Java.TypeParameter
-
Packages that use Java.TypeParameter Package Description org.codehaus.janino The classes in this package pose the core of the Janino JavaTM compiler. -
-
Uses of Java.TypeParameter in org.codehaus.janino
Fields in org.codehaus.janino declared as Java.TypeParameter Modifier and Type Field Description Java.TypeParameter[]
Java.InterfaceDeclaration. optionalTypeParameters
The optional type parameters of this interface.Java.TypeParameter[]
Java.NamedClassDeclaration. optionalTypeParameters
The optional type parameters of this interface.Methods in org.codehaus.janino that return Java.TypeParameter Modifier and Type Method Description Java.TypeParameter[]
Java.InterfaceDeclaration. getOptionalTypeParameters()
Java.TypeParameter[]
Java.NamedClassDeclaration. getOptionalTypeParameters()
Java.TypeParameter[]
Java.NamedTypeDeclaration. getOptionalTypeParameters()
private Java.TypeParameter
Parser. parseTypeParameter()
TypeParameter := identifier [ 'extends' ( identifier | ReferenceType { '&' ReferenceType }private Java.TypeParameter[]
Parser. parseTypeParametersOpt()
TypeParameters := '<' TypeParameter { ',' TypeParameter } '>'Constructors in org.codehaus.janino with parameters of type Java.TypeParameter Constructor Description InterfaceDeclaration(Location location, java.lang.String optionalDocComment, Java.Modifiers modifiers, java.lang.String name, Java.TypeParameter[] optionalTypeParameters, Java.Type[] extendedTypes)
LocalClassDeclaration(Location location, java.lang.String optionalDocComment, Java.Modifiers modifiers, java.lang.String name, Java.TypeParameter[] optionalTypeParameters, Java.Type optionalExtendedType, Java.Type[] implementedTypes)
MemberClassDeclaration(Location location, java.lang.String optionalDocComment, Java.Modifiers modifiers, java.lang.String name, Java.TypeParameter[] optionalTypeParameters, Java.Type optionalExtendedType, Java.Type[] implementedTypes)
MemberInterfaceDeclaration(Location location, java.lang.String optionalDocComment, Java.Modifiers modifiers, java.lang.String name, Java.TypeParameter[] optionalTypeParameters, Java.Type[] extendedTypes)
NamedClassDeclaration(Location location, java.lang.String optionalDocComment, Java.Modifiers modifiers, java.lang.String name, Java.TypeParameter[] optionalTypeParameters, Java.Type optionalExtendedType, Java.Type[] implementedTypes)
PackageMemberClassDeclaration(Location location, java.lang.String optionalDocComment, Java.Modifiers modifiers, java.lang.String name, Java.TypeParameter[] optionalTypeParameters, Java.Type optionalExtendedType, Java.Type[] implementedTypes)
PackageMemberInterfaceDeclaration(Location location, java.lang.String optionalDocComment, Java.Modifiers modifiers, java.lang.String name, Java.TypeParameter[] optionalTypeParameters, Java.Type[] extendedTypes)
-