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

com.paypal.butterfly.utilities.operations.pom.stax.EndElementEventCondition Maven / Gradle / Ivy

There is a newer version: 3.2.7
Show newest version
package com.paypal.butterfly.utilities.operations.pom.stax;

import javax.xml.stream.events.XMLEvent;

public class EndElementEventCondition implements EventCondition {

    private String tagName;

    public EndElementEventCondition(String tagName) {
        this.tagName = tagName;
    }

    @Override
    public boolean evaluateEvent(XMLEvent xmlEvent) {
        return xmlEvent.isEndElement() && xmlEvent.asEndElement().getName().getLocalPart().equals(tagName);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy