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

org.exparity.data.xml.matchers.XPathMatcher Maven / Gradle / Ivy

The newest version!
/*
 *
 */

package org.exparity.data.xml.matchers;

import org.apache.commons.collections.CollectionUtils;
import org.exparity.data.XML;
import org.exparity.data.xml.XmlMatcher;

/**
 * @author Stewart Bissett
 */
public class XPathMatcher implements XmlMatcher {

    private final String xpath;

    public XPathMatcher(final String xpath) {
        this.xpath = xpath;
    }

    @Override
    public boolean matches(final XML document) {
        return CollectionUtils.isNotEmpty(document.findElementsByXpath(xpath));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy