All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.jcr.PropertyIterator Maven / Gradle / Ivy

There is a newer version: 2024.11.18598.20241113T125352Z-241000
Show newest version
/*
 * Copyright 2009 Day Management AG, Switzerland. All rights reserved.
 */
package javax.jcr;

/**
 * Allows easy iteration through a list of Propertys 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
     *          Propertys.
     */
    public Property nextProperty();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy