Uses of Interface
net.bytebuddy.description.TypeVariableSource.Visitor
-
Packages that use TypeVariableSource.Visitor Package Description net.bytebuddy.description Classes of this package allow the representation of Java classes, their member and their meta data.net.bytebuddy.description.method Contains descriptions of Java methods and constructors as well as their parameters.net.bytebuddy.description.type Contains descriptions of Java types and packages. -
-
Uses of TypeVariableSource.Visitor in net.bytebuddy.description
Classes in net.bytebuddy.description that implement TypeVariableSource.Visitor Modifier and Type Class Description static class
TypeVariableSource.Visitor.NoOp
A none-operational implementation of a type variable visitor that simply returns the visited source.Methods in net.bytebuddy.description with parameters of type TypeVariableSource.Visitor Modifier and Type Method Description <T> T
TypeVariableSource. accept(TypeVariableSource.Visitor<T> visitor)
Applies a visitor on this type variable source. -
Uses of TypeVariableSource.Visitor in net.bytebuddy.description.method
Methods in net.bytebuddy.description.method with parameters of type TypeVariableSource.Visitor Modifier and Type Method Description <T> T
MethodDescription.AbstractBase. accept(TypeVariableSource.Visitor<T> visitor)
Applies a visitor on this type variable source. -
Uses of TypeVariableSource.Visitor in net.bytebuddy.description.type
Classes in net.bytebuddy.description.type that implement TypeVariableSource.Visitor Modifier and Type Class Description protected class
TypeDescription.Generic.Visitor.Substitutor.ForTypeVariableBinding.TypeVariableSubstitutor
Substitutes a type variable, either with a new binding if the variable is defined by a type or with a retained type variable if the variable is defined by a method.Methods in net.bytebuddy.description.type with parameters of type TypeVariableSource.Visitor Modifier and Type Method Description <T> T
TypeDescription.AbstractBase. accept(TypeVariableSource.Visitor<T> visitor)
Applies a visitor on this type variable source.
-