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 class
AgentBuilder.Default.Ignoring
A 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.Ignored
AgentBuilder.Default.Ignoring. and(AgentBuilder.RawMatcher rawMatcher)
AgentBuilder.Ignored
AgentBuilder.Default.Delegator. ignore(AgentBuilder.RawMatcher rawMatcher)
AgentBuilder.Ignored
AgentBuilder.Default.Delegator. ignore(ElementMatcher<? super TypeDescription> ignoredTypes)
AgentBuilder.Ignored
AgentBuilder.Default.Delegator. ignore(ElementMatcher<? super TypeDescription> ignoredTypes, ElementMatcher<? super java.lang.ClassLoader> ignoredClassLoaders)
AgentBuilder.Ignored
AgentBuilder.Default.Delegator. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher, ElementMatcher<? super JavaModule> moduleMatcher)
AgentBuilder.Ignored
AgentBuilder.Default. ignore(AgentBuilder.RawMatcher rawMatcher)
AgentBuilder.Ignored
AgentBuilder.Default. ignore(ElementMatcher<? super TypeDescription> typeMatcher)
AgentBuilder.Ignored
AgentBuilder.Default. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher)
AgentBuilder.Ignored
AgentBuilder.Default. ignore(ElementMatcher<? super TypeDescription> typeMatcher, ElementMatcher<? super java.lang.ClassLoader> classLoaderMatcher, ElementMatcher<? super JavaModule> moduleMatcher)
AgentBuilder.Ignored
AgentBuilder. ignore(AgentBuilder.RawMatcher rawMatcher)
Excludes any type that is matched by the raw matcher provided to this method.AgentBuilder.Ignored
AgentBuilder. ignore(ElementMatcher<? super TypeDescription> typeMatcher)
Excludes any type that is matched by the provided matcher from instrumentation and considers types by allClassLoader
s.AgentBuilder.Ignored
AgentBuilder. 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.Ignored
AgentBuilder. 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.Ignored
AgentBuilder.Default.Ignoring. or(AgentBuilder.RawMatcher rawMatcher)
-