org.nlab.xml.stream.predicate.AllPredicate 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 org.nlab.xml.stream.context.StreamContext;
/**
* Created by nlabrot on 15/03/15.
*/
public class AllPredicate implements XmlPredicate {
public static final AllPredicate INSTANCE = new AllPredicate();
protected AllPredicate() {
}
@Override
public boolean test(StreamContext staxContext) {
return true;
}
@Override
public String toString() {
return "AllPredicate{}";
}
}