Uses of Class
net.bytebuddy.agent.builder.AgentBuilder.LambdaInstrumentationStrategy
-
Packages that use AgentBuilder.LambdaInstrumentationStrategy 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.LambdaInstrumentationStrategy in net.bytebuddy.agent.builder
Fields in net.bytebuddy.agent.builder declared as AgentBuilder.LambdaInstrumentationStrategy Modifier and Type Field Description protected AgentBuilder.LambdaInstrumentationStrategy
AgentBuilder.Default. lambdaInstrumentationStrategy
A strategy to determine of theLambdaMetafactory
should be instrumented to allow for the instrumentation of classes that represent lambda expressions.Methods in net.bytebuddy.agent.builder that return AgentBuilder.LambdaInstrumentationStrategy Modifier and Type Method Description static AgentBuilder.LambdaInstrumentationStrategy
AgentBuilder.LambdaInstrumentationStrategy. of(boolean enabled)
Returns an enabled lambda instrumentation strategy fortrue
.static AgentBuilder.LambdaInstrumentationStrategy
AgentBuilder.LambdaInstrumentationStrategy. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AgentBuilder.LambdaInstrumentationStrategy[]
AgentBuilder.LambdaInstrumentationStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-