Class NodeIterable
- java.lang.Object
-
- org.apache.jackrabbit.commons.iterator.NodeIterable
-
@Deprecated public class NodeIterable extends Object implements Iterable<Node>
Deprecated.- UseJcrUtils.in(NodeIterator)
insteadAdapter class that adapts aNodeIterator
instance to anIterable
instance that always returns the same underlying iterator.- Since:
- Apache Jackrabbit 2.0
-
-
Constructor Summary
Constructors Constructor Description NodeIterable(NodeIterator iterator)
Deprecated.Creates an iterable adapter for the given node iterator.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Iterator<Node>
iterator()
Deprecated.Returns the node iterator.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
NodeIterable
public NodeIterable(NodeIterator iterator)
Deprecated.Creates an iterable adapter for the given node iterator.- Parameters:
iterator
- the node iterator to be adapted
-
-