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

net.sf.javagimmicks.collections.Ring Maven / Gradle / Ivy

There is a newer version: 0.99-alpha1
Show newest version
package net.sf.javagimmicks.collections;

import java.util.Collection;

/**
 * Defines a {@link Collection}-like data structure that organizes elements
 * within a ring structure, so there is a well-defined order but no index,
 * beginning or end.
 * 

* The interface fully extends the {@link Collection} interface but additionally * extends {@link RingCursorProvider} that allows to create a {@link RingCursor} * for it which is a special kind of iterator that defines no beginning or end * but operations to modify or traverse the underlying data structure. * * @param * the type of elements this {@link Ring} can contain */ public interface Ring extends Collection, RingCursorProvider {}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy