Uses of Class
io.github.classgraph.TypeArgument
-
Packages that use TypeArgument Package Description io.github.classgraph -
-
Uses of TypeArgument in io.github.classgraph
Fields in io.github.classgraph with type parameters of type TypeArgument Modifier and Type Field Description private java.util.List<java.util.List<TypeArgument>>
ClassRefTypeSignature. suffixTypeArguments
The suffix type arguments.private java.util.List<TypeArgument>
ClassRefTypeSignature. typeArguments
The class type arguments.Methods in io.github.classgraph that return TypeArgument Modifier and Type Method Description private static TypeArgument
TypeArgument. parse(Parser parser, java.lang.String definingClassName)
Parse a type argument.Methods in io.github.classgraph that return types with arguments of type TypeArgument Modifier and Type Method Description java.util.List<java.util.List<TypeArgument>>
ClassRefTypeSignature. getSuffixTypeArguments()
Get a list of type arguments for all nested suffixes of the class, one list per suffix.java.util.List<TypeArgument>
ClassRefTypeSignature. getTypeArguments()
Get any type arguments of the base class.(package private) static java.util.List<TypeArgument>
TypeArgument. parseList(Parser parser, java.lang.String definingClassName)
Parse a list of type arguments.Constructor parameters in io.github.classgraph with type arguments of type TypeArgument Constructor Description ClassRefTypeSignature(java.lang.String className, java.util.List<TypeArgument> typeArguments, java.util.List<java.lang.String> suffixes, java.util.List<java.util.List<TypeArgument>> suffixTypeArguments)
Constructor.
-