Uses of Interface
org.apache.jackrabbit.oak.plugins.observation.filter.UniversalFilter.Selector
-
Packages that use UniversalFilter.Selector Package Description org.apache.jackrabbit.oak.plugins.observation.filter -
-
Uses of UniversalFilter.Selector in org.apache.jackrabbit.oak.plugins.observation.filter
Classes in org.apache.jackrabbit.oak.plugins.observation.filter that implement UniversalFilter.Selector Modifier and Type Class Description classRelativePathSelectorA selector for selecting a node at a relative path from the node selected by an initial selector.Fields in org.apache.jackrabbit.oak.plugins.observation.filter declared as UniversalFilter.Selector Modifier and Type Field Description static UniversalFilter.SelectorSelectors. PARENTA selector returning the parent node of the item for which a call back onEventFilterwas called.static UniversalFilter.SelectorSelectors. THISA selector returning the node for which a call back onEventFilterwas called or a non existing node in the case of a property call back.Methods in org.apache.jackrabbit.oak.plugins.observation.filter that return UniversalFilter.Selector Modifier and Type Method Description static @NotNull UniversalFilter.SelectorSelectors. fromParent(@NotNull String relPath)A selector returning the node atrelPathrelative toSelectors.PARENTstatic @NotNull UniversalFilter.SelectorSelectors. fromThis(@NotNull String relPath)A selector returning the node atrelPathrelative toSelectors.THISMethods in org.apache.jackrabbit.oak.plugins.observation.filter with parameters of type UniversalFilter.Selector Modifier and Type Method Description @NotNull FilterBuilder.ConditionFilterBuilder. nodeType(@NotNull UniversalFilter.Selector selector, @Nullable String[] ntNames)A condition that holds for matching node types.@NotNull FilterBuilder.ConditionFilterBuilder. property(@NotNull UniversalFilter.Selector selector, @NotNull String name, @NotNull Predicate<PropertyState> predicate)A condition that holds when the property predicate matches.@NotNull FilterBuilder.ConditionFilterBuilder. universal(@NotNull UniversalFilter.Selector selector, @NotNull Predicate<NodeState> predicate)A condition that holds when the predicate matches.@NotNull FilterBuilder.ConditionFilterBuilder. uuid(@NotNull UniversalFilter.Selector selector, @Nullable String[] uuids)A condition that holds for matching uuids.Constructors in org.apache.jackrabbit.oak.plugins.observation.filter with parameters of type UniversalFilter.Selector Constructor Description RelativePathSelector(@NotNull String path, @NotNull UniversalFilter.Selector selector)UniversalFilter(@NotNull NodeState before, @NotNull NodeState after, @NotNull UniversalFilter.Selector selector, @NotNull Predicate<NodeState> predicate)Create a new instance of an universal filter rooted at the passed trees.
-