org.nlab.xml.stream.predicate.XmlPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xml-stream-css Show documentation
Show all versions of xml-stream-css Show documentation
Stream Xml using StAX and Css matcher
The newest version!
package org.nlab.xml.stream.predicate;
import java.util.function.Predicate;
import org.nlab.xml.stream.context.StreamContext;
/**
* Created by nlabrot on 14/12/15.
*/
public interface XmlPredicate extends Predicate {
default boolean requireSibbling(){
return false;
}
}