Package net.bytebuddy.description.type
Class TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument
- java.lang.Object
-
- net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor
-
- net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument
-
- All Implemented Interfaces:
TypeDescription.Generic.Visitor<org.objectweb.asm.signature.SignatureVisitor>
- Enclosing class:
- TypeDescription.Generic.Visitor.ForSignatureVisitor
protected static class TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument extends TypeDescription.Generic.Visitor.ForSignatureVisitor
Visits a parameter while visiting a generic type for delegating discoveries to a signature visitor.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor
TypeDescription.Generic.Visitor.ForSignatureVisitor.OfTypeArgument
-
Nested classes/interfaces inherited from interface net.bytebuddy.description.type.TypeDescription.Generic.Visitor
TypeDescription.Generic.Visitor.AnnotationStripper, TypeDescription.Generic.Visitor.Assigner, TypeDescription.Generic.Visitor.ForRawType, TypeDescription.Generic.Visitor.ForSignatureVisitor, TypeDescription.Generic.Visitor.Generalizing, TypeDescription.Generic.Visitor.NoOp, TypeDescription.Generic.Visitor.Reducing, TypeDescription.Generic.Visitor.Reifying, TypeDescription.Generic.Visitor.Substitutor, TypeDescription.Generic.Visitor.TypeErasing, TypeDescription.Generic.Visitor.Validator
-
-
Field Summary
-
Fields inherited from class net.bytebuddy.description.type.TypeDescription.Generic.Visitor.ForSignatureVisitor
signatureVisitor
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedOfTypeArgument(org.objectweb.asm.signature.SignatureVisitor signatureVisitor)Creates a new parameter visitor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.objectweb.asm.signature.SignatureVisitoronGenericArray(TypeDescription.Generic genericArray)Visits a generic array type (TypeDefinition.Sort.GENERIC_ARRAY).org.objectweb.asm.signature.SignatureVisitoronNonGenericType(TypeDescription.Generic typeDescription)Visits a non-generic type (TypeDefinition.Sort.NON_GENERIC).org.objectweb.asm.signature.SignatureVisitoronParameterizedType(TypeDescription.Generic parameterizedType)Visits a parameterized type (TypeDefinition.Sort.PARAMETERIZED).org.objectweb.asm.signature.SignatureVisitoronTypeVariable(TypeDescription.Generic typeVariable)Visits a type variable (TypeDefinition.Sort.VARIABLE,TypeDefinition.Sort.VARIABLE_SYMBOLIC).org.objectweb.asm.signature.SignatureVisitoronWildcard(TypeDescription.Generic wildcard)Visits a wildcard (TypeDefinition.Sort.WILDCARD).
-
-
-
Method Detail
-
onWildcard
public org.objectweb.asm.signature.SignatureVisitor onWildcard(TypeDescription.Generic wildcard)
Visits a wildcard (TypeDefinition.Sort.WILDCARD).- Specified by:
onWildcardin interfaceTypeDescription.Generic.Visitor<org.objectweb.asm.signature.SignatureVisitor>- Overrides:
onWildcardin classTypeDescription.Generic.Visitor.ForSignatureVisitor- Parameters:
wildcard- The wildcard.- Returns:
- The visitor's return value.
-
onGenericArray
public org.objectweb.asm.signature.SignatureVisitor onGenericArray(TypeDescription.Generic genericArray)
Visits a generic array type (TypeDefinition.Sort.GENERIC_ARRAY).- Specified by:
onGenericArrayin interfaceTypeDescription.Generic.Visitor<org.objectweb.asm.signature.SignatureVisitor>- Overrides:
onGenericArrayin classTypeDescription.Generic.Visitor.ForSignatureVisitor- Parameters:
genericArray- The generic array type.- Returns:
- The visitor's return value.
-
onParameterizedType
public org.objectweb.asm.signature.SignatureVisitor onParameterizedType(TypeDescription.Generic parameterizedType)
Visits a parameterized type (TypeDefinition.Sort.PARAMETERIZED).- Specified by:
onParameterizedTypein interfaceTypeDescription.Generic.Visitor<org.objectweb.asm.signature.SignatureVisitor>- Overrides:
onParameterizedTypein classTypeDescription.Generic.Visitor.ForSignatureVisitor- Parameters:
parameterizedType- The generic array type.- Returns:
- The visitor's return value.
-
onTypeVariable
public org.objectweb.asm.signature.SignatureVisitor onTypeVariable(TypeDescription.Generic typeVariable)
Visits a type variable (TypeDefinition.Sort.VARIABLE,TypeDefinition.Sort.VARIABLE_SYMBOLIC).- Specified by:
onTypeVariablein interfaceTypeDescription.Generic.Visitor<org.objectweb.asm.signature.SignatureVisitor>- Overrides:
onTypeVariablein classTypeDescription.Generic.Visitor.ForSignatureVisitor- Parameters:
typeVariable- The generic array type.- Returns:
- The visitor's return value.
-
onNonGenericType
public org.objectweb.asm.signature.SignatureVisitor onNonGenericType(TypeDescription.Generic typeDescription)
Visits a non-generic type (TypeDefinition.Sort.NON_GENERIC).- Specified by:
onNonGenericTypein interfaceTypeDescription.Generic.Visitor<org.objectweb.asm.signature.SignatureVisitor>- Overrides:
onNonGenericTypein classTypeDescription.Generic.Visitor.ForSignatureVisitor- Parameters:
typeDescription- The non-generic type.- Returns:
- The visitor's return value.
-
-