Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.Ignored
-
Packages that use AgentBuilder.Ignored 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.Ignored in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.Ignored Modifier and Type Class Description protected classAgentBuilder.Default.IgnoringA delegator transformer for further precising what types to ignore.Methods in net.bytebuddy.agent.builder that return AgentBuilder.Ignored Modifier and Type Method Description AgentBuilder.IgnoredAgentBuilder.Default.Ignoring. and(AgentBuilder.RawMatcher rawMatcher)AgentBuilder.IgnoredAgentBuilder.Default.Delegator. ignore(AgentBuilder.RawMatcher rawMatcher)AgentBuilder.IgnoredAgentBuilder.Default.Delegator. ignore(ElementMatcher<? super TypeDescription> ignoredTypes)AgentBuilder.IgnoredAgentBuilder.Default.Delegator. ignore(ElementMatcher<? super TypeDescription> ignoredTypes, ElementMatcher<? super java.lang.ClassLoader> ignoredClassLoaders)AgentBuilder.IgnoredAgentBuilder.Default.Delegator. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher, ElementMatcher<? super JavaModule> moduleMatcher)AgentBuilder.IgnoredAgentBuilder.Default. ignore(AgentBuilder.RawMatcher rawMatcher)AgentBuilder.IgnoredAgentBuilder.Default. ignore(ElementMatcher<? super TypeDescription> typeMatcher)AgentBuilder.IgnoredAgentBuilder.Default. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher)AgentBuilder.IgnoredAgentBuilder.Default. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher, ElementMatcher<? super JavaModule> moduleMatcher)AgentBuilder.IgnoredAgentBuilder. ignore(AgentBuilder.RawMatcher rawMatcher)Excludes any type that is matched by the raw matcher provided to this method.AgentBuilder.IgnoredAgentBuilder. ignore(ElementMatcher<? super TypeDescription> typeMatcher)Excludes any type that is matched by the provided matcher from instrumentation and considers types by allClassLoaders.AgentBuilder.IgnoredAgentBuilder. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher)Excludes any type that is matched by the provided matcher and is loaded by a class loader matching the second matcher.AgentBuilder.IgnoredAgentBuilder. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher, ElementMatcher<? super JavaModule> moduleMatcher)Excludes any type that is matched by the provided matcher and is loaded by a class loader matching the second matcher.AgentBuilder.IgnoredAgentBuilder.Default.Ignoring. or(AgentBuilder.RawMatcher rawMatcher)
-