public class ChildrenCollectorFilter extends TraversingItemVisitor.Default
ChildrenCollectorFilter
is a utility class
which can be used to 'collect' child items of a
node whose names match a certain pattern. It implements the
ItemVisitor
interface.TraversingItemVisitor.Default
breadthFirst, maxLevel
Constructor and Description |
---|
ChildrenCollectorFilter(String[] nameGlobs,
Collection<Item> children,
boolean collectNodes,
boolean collectProperties,
int maxLevel)
Constructs a
ChildrenCollectorFilter |
ChildrenCollectorFilter(String namePattern,
Collection<Item> children,
boolean collectNodes,
boolean collectProperties,
int maxLevel)
Constructs a
ChildrenCollectorFilter |
Modifier and Type | Method and Description |
---|---|
static NodeIterator |
collectChildNodes(Node node,
String namePattern) |
static NodeIterator |
collectChildNodes(Node node,
String[] nameGlobs) |
static PropertyIterator |
collectProperties(Node node,
String namePattern) |
static PropertyIterator |
collectProperties(Node node,
String[] nameGlobs) |
protected void |
entering(Node node,
int level) |
protected void |
entering(Property property,
int level) |
static boolean |
matches(String name,
String pattern)
|
static boolean |
matches(String name,
String[] nameGlobs)
|
leaving, leaving
visit, visit
public ChildrenCollectorFilter(String namePattern, Collection<Item> children, boolean collectNodes, boolean collectProperties, int maxLevel)
ChildrenCollectorFilter
namePattern
- the pattern which should be applied to the names
of the childrenchildren
- where the matching children should be addedcollectNodes
- true, if child nodes should be collected; otherwise falsecollectProperties
- true, if child properties should be collected; otherwise falsemaxLevel
- number of hierarchy levels to traverse
(e.g. 1 for direct children only, 2 for children and their children, and so on)public ChildrenCollectorFilter(String[] nameGlobs, Collection<Item> children, boolean collectNodes, boolean collectProperties, int maxLevel)
ChildrenCollectorFilter
nameGlobs
- an array of globbing strings which should be
applied to the names of the childrenchildren
- where the matching children should be addedcollectNodes
- true, if child nodes should be collected; otherwise falsecollectProperties
- true, if child properties should be collected; otherwise falsemaxLevel
- number of hierarchy levels to traverse
(e.g. 1 for direct children only, 2 for children and their children, and so on)public static NodeIterator collectChildNodes(Node node, String namePattern) throws RepositoryException
RepositoryException
public static NodeIterator collectChildNodes(Node node, String[] nameGlobs) throws RepositoryException
RepositoryException
public static PropertyIterator collectProperties(Node node, String namePattern) throws RepositoryException
RepositoryException
public static PropertyIterator collectProperties(Node node, String[] nameGlobs) throws RepositoryException
RepositoryException
protected void entering(Node node, int level) throws RepositoryException
entering
in class TraversingItemVisitor.Default
RepositoryException
protected void entering(Property property, int level) throws RepositoryException
entering
in class TraversingItemVisitor.Default
RepositoryException
public static boolean matches(String name, String pattern)
Node.getNodes(String)
public static boolean matches(String name, String[] nameGlobs)
Node.getNodes(String)
Copyright © 2004–2023 The Apache Software Foundation. All rights reserved.