All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.skywalking.apm.dependencies.net.bytebuddy.matcher.NegatingMatcher Maven / Gradle / Ivy

There is a newer version: 9.2.0
Show newest version
package org.apache.skywalking.apm.dependencies.net.bytebuddy.matcher;

import org.apache.skywalking.apm.dependencies.net.bytebuddy.build.HashCodeAndEqualsPlugin;

/**
 * An element matcher that reverses the matching result of another matcher.
 *
 * @param  The type of the matched entity.
 */
@HashCodeAndEqualsPlugin.Enhance
public class NegatingMatcher extends ElementMatcher.Junction.AbstractBase {

    /**
     * The element matcher to be negated.
     */
    private final ElementMatcher matcher;

    /**
     * Creates a new negating element matcher.
     *
     * @param matcher The element matcher to be negated.
     */
    public NegatingMatcher(ElementMatcher matcher) {
        this.matcher = matcher;
    }

    /**
     * {@inheritDoc}
     */
    public boolean matches(T target) {
        return !matcher.matches(target);
    }

    /**
     * {@inheritDoc}
     */
    public String toString() {
        return "not(" + matcher + ')';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy