javax.jcr.PropertyIterator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Copyright 2009 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr;
/**
* Allows easy iteration through a list of Property
s with
* nextProperty
as well as a skip
method.
*/
public interface PropertyIterator extends RangeIterator {
/**
* Returns the next Property
in the iteration.
*
* @return the next Property
in the iteration.
* @throws java.util.NoSuchElementException
* if iteration has no more
* Property
s.
*/
public Property nextProperty();
}