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

cdc.bench.support.checks.VerbosePredicateAdapter Maven / Gradle / Ivy

package cdc.bench.support.checks;

import java.util.function.Predicate;

public class VerbosePredicateAdapter implements Predicate {
    private final VerbosePredicate delegate;

    public VerbosePredicateAdapter(VerbosePredicate delegate) {
        this.delegate = delegate;
    }

    @Override
    public boolean test(E value) {
        return delegate.apply(value, null).isApplied();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy