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

com.paypal.butterfly.utilities.operations.pom.stax.StartDocumentEventCondition 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 StartDocumentEventCondition implements EventCondition {

    @Override
    public boolean evaluateEvent(XMLEvent xmlEvent) {
        return xmlEvent.isStartDocument();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy