
org.nlab.json.stream.predicate.AllPredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of json-stream Show documentation
Show all versions of json-stream Show documentation
Json Streaming / JsonPath Matcher
The newest version!
package org.nlab.json.stream.predicate;
import org.nlab.json.stream.context.StreamContext;
/**
* Created by nlabrot on 15/03/15.
*/
public class AllPredicate implements JsonPredicate {
public static final AllPredicate INSTANCE = new AllPredicate();
protected AllPredicate() {
}
@Override
public boolean test(StreamContext staxContext) {
return true;
}
@Override
public String toString() {
return "AllPredicate{}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy