Interface PojoPathFilterFactory<S>
-
- Type Parameters:
S
- The expected type of the object representing a set of paths.
public interface PojoPathFilterFactory<S>
A factory forPojoPathFilter
instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PojoPathFilter<S>
create(Set<PojoModelPathValueNode> paths)
-
-
-
Method Detail
-
create
PojoPathFilter<S> create(Set<PojoModelPathValueNode> paths)
- Parameters:
paths
- The set of paths to test for dirtiness. The set must be non-null and non-empty, and the elements must be non-null. Container value extractor paths must be completely resolved:ContainerExtractorPath.defaultExtractors()
is an invalid value that must never appear in the given paths.- Returns:
- A filter accepting only the given paths.
-
-