Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.FallbackStrategy
-
Packages that use AgentBuilder.FallbackStrategy 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.FallbackStrategy in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.FallbackStrategy Modifier and Type Class Description static class
AgentBuilder.FallbackStrategy.ByThrowableType
A fallback strategy that discriminates by the type of theThrowable
that triggered a request.static class
AgentBuilder.FallbackStrategy.Simple
A simple fallback strategy that either always reattempts a transformation or never does so.Fields in net.bytebuddy.agent.builder declared as AgentBuilder.FallbackStrategy Modifier and Type Field Description protected AgentBuilder.FallbackStrategy
AgentBuilder.Default. fallbackStrategy
The fallback strategy to apply.Methods in net.bytebuddy.agent.builder that return AgentBuilder.FallbackStrategy Modifier and Type Method Description static AgentBuilder.FallbackStrategy
AgentBuilder.FallbackStrategy.ByThrowableType. ofOptionalTypes()
Creates a fallback strategy that attempts a fallback if an error indicating a type error is the reason for requesting a reattempt.
-