Uses of Class
net.bytebuddy.description.method.MethodDescription.TypeToken
-
Packages that use MethodDescription.TypeToken Package Description net.bytebuddy.description.method Contains descriptions of Java methods and constructors as well as their parameters.net.bytebuddy.dynamic.scaffold This package contains helper types and implementations that are responsible for the actual writing of a byte array representing a Java class. -
-
Uses of MethodDescription.TypeToken in net.bytebuddy.description.method
Methods in net.bytebuddy.description.method that return MethodDescription.TypeToken Modifier and Type Method Description MethodDescription.TypeToken
MethodDescription.AbstractBase. asTypeToken()
MethodDescription.TypeToken
MethodDescription. asTypeToken()
Returns a type token that represents this method's raw return and parameter types.MethodDescription.TypeToken
MethodDescription.SignatureToken. asTypeToken()
Returns this signature token as a type token.Methods in net.bytebuddy.description.method with parameters of type MethodDescription.TypeToken Modifier and Type Method Description boolean
MethodDescription.AbstractBase. isBridgeCompatible(MethodDescription.TypeToken typeToken)
boolean
MethodDescription. isBridgeCompatible(MethodDescription.TypeToken typeToken)
Validates that the supplied type token can implement a bridge method to this method. -
Uses of MethodDescription.TypeToken in net.bytebuddy.dynamic.scaffold
Methods in net.bytebuddy.dynamic.scaffold that return types with arguments of type MethodDescription.TypeToken Modifier and Type Method Description protected java.util.Set<MethodDescription.TypeToken>
MethodGraph.Compiler.Default.Key.Detached. getIdentifiers()
java.util.Set<MethodDescription.TypeToken>
MethodGraph.Compiler.Default.Key.Store.Entry.Ambiguous.Node. getMethodTypes()
java.util.Set<MethodDescription.TypeToken>
MethodGraph.Compiler.Default.Key.Store.Entry.Resolved.Node. getMethodTypes()
java.util.Set<MethodDescription.TypeToken>
MethodGraph.Node. getMethodTypes()
Returns a set of type tokens that this method represents.java.util.Set<MethodDescription.TypeToken>
MethodGraph.Node.Simple. getMethodTypes()
java.util.Set<MethodDescription.TypeToken>
MethodGraph.Node.Unresolved. getMethodTypes()
protected java.util.Set<MethodDescription.TypeToken>
MethodRegistry.Default.Prepared.Entry. resolveBridgeTypes()
Resolves the type tokens of all bridge methods that are required to be implemented for this entry.Methods in net.bytebuddy.dynamic.scaffold with parameters of type MethodDescription.TypeToken Modifier and Type Method Description protected MethodGraph.Compiler.Default.Key.Detached
MethodGraph.Compiler.Default.Key.Harmonized. detach(MethodDescription.TypeToken typeToken)
Creates a detached version of this key.MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod.Token
MethodGraph.Compiler.Default.Harmonizer.ForJavaMethod. harmonize(MethodDescription.TypeToken typeToken)
MethodGraph.Compiler.Default.Harmonizer.ForJVMMethod.Token
MethodGraph.Compiler.Default.Harmonizer.ForJVMMethod. harmonize(MethodDescription.TypeToken typeToken)
S
MethodGraph.Compiler.Default.Harmonizer. harmonize(MethodDescription.TypeToken typeToken)
Harmonizes the given type token.Method parameters in net.bytebuddy.dynamic.scaffold with type arguments of type MethodDescription.TypeToken Modifier and Type Method Description protected MethodRegistry.Default.Prepared.Entry
MethodRegistry.Default.Entry. asPreparedEntry(TypeDescription instrumentedType, MethodDescription methodDescription, java.util.Set<MethodDescription.TypeToken> methodTypes, Visibility visibility)
Transforms this entry into a prepared state.static TypeWriter.MethodPool.Record
TypeWriter.MethodPool.Record.AccessBridgeWrapper. of(TypeWriter.MethodPool.Record delegate, TypeDescription instrumentedType, MethodDescription bridgeTarget, java.util.Set<MethodDescription.TypeToken> bridgeTypes, MethodAttributeAppender attributeAppender)
Wraps the given record in an accessor bridge wrapper if necessary.Constructors in net.bytebuddy.dynamic.scaffold with parameters of type MethodDescription.TypeToken Constructor Description AccessorBridge(MethodDescription bridgeTarget, MethodDescription.TypeToken bridgeType, TypeDescription instrumentedType)
Creates a new accessor bridge method.Token(MethodDescription.TypeToken typeToken)
Creates a new type token for a Java method.Token(MethodDescription.TypeToken typeToken)
Creates a new type token for a JVM method.Constructor parameters in net.bytebuddy.dynamic.scaffold with type arguments of type MethodDescription.TypeToken Constructor Description AccessBridgeWrapper(TypeWriter.MethodPool.Record delegate, TypeDescription instrumentedType, MethodDescription bridgeTarget, java.util.Set<MethodDescription.TypeToken> bridgeTypes, MethodAttributeAppender attributeAppender)
Creates a wrapper for adding accessor bridges.Detached(java.lang.String internalName, java.util.Set<MethodDescription.TypeToken> identifiers)
Creates a new detached key.Entry(MethodRegistry.Handler.Compiled handler, MethodAttributeAppender attributeAppender, MethodDescription methodDescription, java.util.Set<MethodDescription.TypeToken> bridgeTypes, Visibility visibility, boolean bridgeMethod)
Creates a new entry for a compiled method registry.Entry(MethodRegistry.Handler handler, MethodAttributeAppender.Factory attributeAppenderFactory, MethodDescription methodDescription, java.util.Set<MethodDescription.TypeToken> typeTokens, Visibility visibility, boolean bridgeMethod)
Creates a new prepared entry.Graph(java.util.LinkedHashMap<MethodGraph.Compiler.Default.Key<MethodDescription.TypeToken>,MethodGraph.Node> entries)
Creates a new graph.Harmonized(java.lang.String internalName, java.util.Map<V,java.util.Set<MethodDescription.TypeToken>> identifiers)
Creates a new harmonized key.
-