Uses of Class
io.github.classgraph.TypeSignature
-
Packages that use TypeSignature Package Description io.github.classgraph -
-
Uses of TypeSignature in io.github.classgraph
Subclasses of TypeSignature in io.github.classgraph Modifier and Type Class Description classArrayTypeSignatureAn array type signature.classBaseTypeSignatureA type signature for a base type (byte, char, double, float, int, long, short, boolean, or void).classClassRefOrTypeVariableSignatureA class type or type variable.classClassRefTypeSignatureA class reference type signature (called "ClassTypeSignature" in the classfile documentation).classReferenceTypeSignatureA type signature for a reference type.classTypeVariableSignatureA type variable signature.Fields in io.github.classgraph declared as TypeSignature Modifier and Type Field Description private TypeSignatureArrayTypeSignature. nestedTypeThe nested type (anotherArrayTypeSignature, or the base element type).private TypeSignatureMethodTypeSignature. resultTypeThe method result type.private TypeSignatureFieldInfo. typeDescriptorThe parsed type descriptor.private TypeSignatureMethodParameterInfo. typeDescriptorThe type descriptor.private TypeSignatureAnnotationClassRef. typeSignatureThe type signature.private TypeSignatureFieldInfo. typeSignatureThe parsed type signature.private TypeSignatureMethodParameterInfo. typeSignatureThe type signature.Fields in io.github.classgraph with type parameters of type TypeSignature Modifier and Type Field Description private java.util.List<TypeSignature>MethodTypeSignature. parameterTypeSignaturesThe method parameter type signatures.Methods in io.github.classgraph that return TypeSignature Modifier and Type Method Description TypeSignatureArrayClassInfo. getElementTypeSignature()Get the type signature of the array elements.TypeSignatureArrayTypeSignature. getElementTypeSignature()Get the type signature of the innermost element type of the array.TypeSignatureArrayTypeSignature. getNestedType()Get the nested type, which is anotherArrayTypeSignaturewith one dimension fewer, if this array has 2 or more dimensions, otherwise this returns the element type.TypeSignatureMethodTypeSignature. getResultType()Get the result type for the method.TypeSignatureFieldInfo. getTypeDescriptor()Returns the parsed type descriptor for the field, which will not include type parameters.TypeSignatureMethodParameterInfo. getTypeDescriptor()Method parameter type descriptor.private TypeSignatureAnnotationClassRef. getTypeSignature()Get the type signature.TypeSignatureFieldInfo. getTypeSignature()Returns the parsed type signature for the field, possibly including type parameters.TypeSignatureMethodParameterInfo. getTypeSignature()Method parameter type signature, possibly including generic type information (or null if no type signature information available for this parameter).TypeSignatureFieldInfo. getTypeSignatureOrTypeDescriptor()Returns the type signature for the field, possibly including type parameters.TypeSignatureMethodParameterInfo. getTypeSignatureOrTypeDescriptor()Method parameter type signature, or if not available, method type descriptor.(package private) static TypeSignatureTypeSignature. parse(java.lang.String typeDescriptor, java.lang.String definingClass)Parse a type signature.(package private) static TypeSignatureTypeSignature. parse(Parser parser, java.lang.String definingClass)Parse a type signature.Methods in io.github.classgraph that return types with arguments of type TypeSignature Modifier and Type Method Description (package private) java.util.List<TypeSignature>MethodTypeSignature. getParameterTypeSignatures()Get the type signatures of the method parameters.Methods in io.github.classgraph with parameters of type TypeSignature Modifier and Type Method Description voidClassfile.TypeAnnotationDecorator. decorate(TypeSignature typeSignature)booleanArrayTypeSignature. equalsIgnoringTypeParams(TypeSignature other)booleanBaseTypeSignature. equalsIgnoringTypeParams(TypeSignature other)booleanClassRefTypeSignature. equalsIgnoringTypeParams(TypeSignature other)abstract booleanTypeSignature. equalsIgnoringTypeParams(TypeSignature other)Compare base types, ignoring generic type parameters.booleanTypeVariableSignature. equalsIgnoringTypeParams(TypeSignature other)Constructors in io.github.classgraph with parameters of type TypeSignature Constructor Description ArrayTypeSignature(TypeSignature elementTypeSignature, int numDims, java.lang.String typeSignatureStr)Constructor.MethodParameterInfo(MethodInfo methodInfo, AnnotationInfo[] annotationInfo, int modifiers, TypeSignature typeDescriptor, TypeSignature typeSignature, java.lang.String name)Constructor.MethodTypeSignature(java.util.List<TypeParameter> typeParameters, java.util.List<TypeSignature> paramTypes, TypeSignature resultType, java.util.List<ClassRefOrTypeVariableSignature> throwsSignatures)Constructor.
-