Uses of Class
com.jayway.jsonpath.Filter

Packages that use Filter
com.jayway.jsonpath   
com.jayway.jsonpath.internal.filter   
 

Uses of Filter in com.jayway.jsonpath
 

Subclasses of Filter in com.jayway.jsonpath
static class Filter.FilterAdapter<T>
           
 

Methods in com.jayway.jsonpath that return Filter
abstract  Filter Filter.addCriteria(Criteria criteria)
          Adds a new criteria to this filter
 Filter Filter.FilterAdapter.addCriteria(Criteria criteria)
           
static Filter Filter.filter(Criteria criteria)
          Creates a new filter based on given criteria
 

Methods in com.jayway.jsonpath with parameters of type Filter
static JsonPath JsonPath.compile(String jsonPath, Filter... filters)
          Compiles a JsonPath
<T> T
JsonModel.get(String jsonPath, Filter... filters)
          Reads the given path from this JsonModel.
 JsonModel JsonModel.getSubModelDetached(String jsonPath, Filter... filters)
          Creates a detached sub model from this JsonModel.
 JsonModel.MappingModelReader JsonModel.map(String jsonPath, Filter... filters)
          Returns a JsonModel.ObjectMappingModelReader for the JsonModel targeted by the provided JsonPath.
static
<T> T
JsonPath.read(File jsonFile, String jsonPath, Filter... filters)
          Creates a new JsonPath and applies it to the provided Json object
static
<T> T
JsonPath.read(InputStream jsonInputStream, String jsonPath, Filter... filters)
          Creates a new JsonPath and applies it to the provided Json object
static
<T> T
JsonPath.read(Object json, String jsonPath, Filter... filters)
          Creates a new JsonPath and applies it to the provided Json object
static
<T> T
JsonPath.read(String json, String jsonPath, Filter... filters)
          Creates a new JsonPath and applies it to the provided Json string
static
<T> T
JsonPath.read(URL jsonURL, String jsonPath, Filter... filters)
          Creates a new JsonPath and applies it to the provided Json object
 String JsonModel.toJson(String jsonPath, Filter... filters)
          Creates a JSON representation of the result of the provided JsonPath
 

Constructors in com.jayway.jsonpath with parameters of type Filter
JsonPath(String jsonPath, Filter[] filters)
           
 

Uses of Filter in com.jayway.jsonpath.internal.filter
 

Method parameters in com.jayway.jsonpath.internal.filter with type arguments of type Filter
 Object PathTokenFilter.filter(Object obj, JsonProvider jsonProvider, LinkedList<Filter> filters, boolean inArrayContext)
           
 Object FieldFilter.filter(Object obj, JsonProvider jsonProvider, LinkedList<Filter> filters, boolean inArrayContext)
           
 Object ArrayQueryFilter.filter(Object obj, JsonProvider jsonProvider, LinkedList<Filter> filters, boolean inArrayContext)
           
 



Copyright © 2011-2012. All Rights Reserved.