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

javax.jcr.version.VersionIterator Maven / Gradle / Ivy

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

import javax.jcr.RangeIterator;

/**
 * Allows easy iteration through a list of Versions objects with
 * nextVersion as well as a skip method inherited from
 * RangeIterator.
 */
public interface VersionIterator extends RangeIterator {

    /**
     * Returns the next Version in the iteration.
     *
     * @return the next Version in the iteration.
     * @throws java.util.NoSuchElementException
     *          if iteration has no more
     *          Versions.
     */
    public Version nextVersion();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy