Toggle navigation
Home
net.bytebuddy.matcher.ElementMatcher to net.bytebuddy.matcher.LatentMatcher
No. of Instances - 24
No. of Commits - 2
No. of Projects - {'byte-buddy'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Different)
ElementMatcher.Junction.Disjunction<MethodDescription>
to
LatentMatcher.Compound
Add or Remove Method invocation
not(ignoredMethods).and(isVirtual().and(not(isFinal())).or(isDeclaredBy(instrumentedType)))
to
not(ignoredMethods.resolve(instrumentedType)).and(isVirtual().and(not(isFinal())).or(isDeclaredBy(instrumentedType)))
isVirtual().and(not(isFinal())).and(isVisibleTo(instrumentedType)).and(not(ignoredMethods))
to
isVirtual().and(not(isFinal())).and(isVisibleTo(instrumentedType)).and(not(ignoredMethods.resolve(instrumentedType)))