Utility class for traversing the {@link Item}s of a JCR hierarchy rooted at a specific {@link Node}.
This class provides an {@link Iterator} of JCR items either through itsimplementation of {@link Iterable} or through various static factory methods.The iterators return its elements in pre-order. That is, each node occurs before its child nodes are traversed. The order in which child nodes are traversed is determined by the underlying JCR implementation. Generally the order is not specified unless a {@link Node} has orderable child nodes.
Whether a specific node is included is determined by an {@link #InclusionPolicy}. Error occurring while traversing are delegated to an {@link #ErrorHandler}.
|
|
|
|
|
|
|
|
|
|