Class PropertyIterable
- java.lang.Object
-
- org.apache.jackrabbit.commons.iterator.PropertyIterable
-
- All Implemented Interfaces:
java.lang.Iterable<Property>
@Deprecated public class PropertyIterable extends java.lang.Object implements java.lang.Iterable<Property>
Deprecated.- UseJcrUtils.in(PropertyIterator)
insteadAdapter class that adapts aPropertyIterator
instance to anIterable
instance that always returns the same underlying iterator.- Since:
- Apache Jackrabbit 2.0
-
-
Constructor Summary
Constructors Constructor Description PropertyIterable(PropertyIterator iterator)
Deprecated.Creates an iterable adapter for the given property iterator.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.Iterator<Property>
iterator()
Deprecated.Returns the property iterator.
-
-
-
Constructor Detail
-
PropertyIterable
public PropertyIterable(PropertyIterator iterator)
Deprecated.Creates an iterable adapter for the given property iterator.- Parameters:
iterator
- the property iterator to be adapted
-
-