A filter is used to filter the content of a JSON array in a JSONPath. Sample String doc = {"items": [{"name" : "john"}, {"name": "bob"}]} List names = JsonPath.read(doc, "$items[?].name", Filter.filter(Criteria.where("name").is("john"));
@see Criteria
@author Kalle Stenflo
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.