Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.Default.NativeMethodStrategy
-
Packages that use AgentBuilder.Default.NativeMethodStrategy Package Description net.bytebuddy.agent.builder An agent builder is used to easily implement load-time class-transformations using a Java agent. -
-
Uses of AgentBuilder.Default.NativeMethodStrategy in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.Default.NativeMethodStrategy Modifier and Type Class Description static class
AgentBuilder.Default.NativeMethodStrategy.Disabled
A native method strategy that suffixes method names with a random suffix and disables native method rebasement.static class
AgentBuilder.Default.NativeMethodStrategy.ForPrefix
A native method strategy that prefixes method names with a fixed value for supporting rebasing of native methods.Fields in net.bytebuddy.agent.builder declared as AgentBuilder.Default.NativeMethodStrategy Modifier and Type Field Description private AgentBuilder.Default.NativeMethodStrategy
AgentBuilder.Default.ExecutingTransformer. nativeMethodStrategy
The native method strategy to apply.protected AgentBuilder.Default.NativeMethodStrategy
AgentBuilder.Default. nativeMethodStrategy
The native method strategy to use.Methods in net.bytebuddy.agent.builder that return AgentBuilder.Default.NativeMethodStrategy Modifier and Type Method Description protected static AgentBuilder.Default.NativeMethodStrategy
AgentBuilder.Default.NativeMethodStrategy.ForPrefix. of(java.lang.String prefix)
Creates a new native method strategy for prefixing method names.
-