org.apache.jackrabbit.commons.iterator.PropertyIterable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackrabbit-jcr-commons Show documentation
Show all versions of jackrabbit-jcr-commons Show documentation
General purpose classes for use with the JCR API
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.commons.iterator;
import java.util.Iterator;
import javax.jcr.Property;
import javax.jcr.PropertyIterator;
import org.apache.jackrabbit.commons.JcrUtils;
/**
* Adapter class that adapts a {@link PropertyIterator} instance to an
* {@link Iterable} instance that always returns the same underlying
* iterator.
*
* @since Apache Jackrabbit 2.0
* @deprecated - Use {@link JcrUtils#in(PropertyIterator)} instead
*/
@Deprecated
public class PropertyIterable implements Iterable {
/**
* The property iterator being adapted.
*/
private final PropertyIterator iterator;
/**
* Creates an iterable adapter for the given property iterator.
*
* @param iterator the property iterator to be adapted
*/
public PropertyIterable(PropertyIterator iterator) {
this.iterator = iterator;
}
/**
* Returns the property iterator.
*
* @return property iterator
*/
@SuppressWarnings("unchecked")
public Iterator iterator() {
return iterator;
}
}