NodeTypeFilters |
|
NodeTypeFilters.OrderableTypeFilter |
|
ResourceFilter.AbstractResourceFilter |
Base class for all ResourceFilters, extend this instead of implementing ResourceFilter to make it easier to extend the interface.
|
ResourceFilter.AllFilter |
the 'all enabled' implementation: filters nothing, each value is appropriate (except null values).
|
ResourceFilter.ContentNodeFilter |
A filter which checks that the "jcr:content"s of resources
satisfy given properties.
|
ResourceFilter.FilterSet |
An implementation to combine ResourceFilters to complex rules.
|
ResourceFilter.FolderFilter |
the 'folder filter' implementation for general tree traversal
|
ResourceFilter.MimeTypeFilter |
A ResourceFilter implementation which checks the 'jcr:mimeType'
of a resource or of its 'jcr:content' child.
|
ResourceFilter.NameFilter |
A ResourceFilter implementation which checks the resources name
of a resource using a StringFilter for the name value.
|
ResourceFilter.NodeTypeFilter |
A ResourceFilter implementation which checks for JCR node types similar to Node.isNodeType(String) -
both primary type and all direct and inherited mixin types are checked against the filters.
|
ResourceFilter.PathFilter |
A ResourceFilter implementation which checks the resource path
of a resource using a StringFilter for the path value.
|
ResourceFilter.PatternFilter |
the abstract base for all filters which are using string patterns (StringFilters)
|
ResourceFilter.PrimaryTypeFilter |
A ResourceFilter implementation which checks the 'jcr:primaryType'
of a resource using a StringFilter for the type values.
|
ResourceFilter.PropertyFilter |
A ResourceFilter implementation which checks a property
of a resource using a StringFilter for the property value.
|
ResourceFilter.ResourceTypeFilter |
A ResourceFilter implementation which checks the 'sling:resourceType'
of a resource or its content node using a StringFilter for the type values.
|
ResourceFilter.TypeFilter |
a general type checking filter
|
StringFilter.All |
the 'all enabled' implementation: filters nothing, each value is appropriate
|
StringFilter.BlackList |
The 'BlackList' is a pattern based filter which accepts all values NOT containing a substring matching to one of its patterns
(see Matcher.find() ).
|
StringFilter.FilterBase |
the abstract base for filters which are using regular expression patterns
|
StringFilter.FilterSet |
An implementation to combine StringFilters to complex rules.
|
StringFilter.Not |
the 'Not...' implementation to invert a filter
|
StringFilter.PatternList |
the abstract base for filters which are using regular expression patterns
|
StringFilter.WhiteList |
The 'WhiteList' is a pattern based filter which accepts all values that contain a substring matching one of its patterns
(see Matcher.find() ).
|