blob: e302a7219dc53c5a35aee36baa3394ff62323686 [file] [log] [blame]
package net.floodlightcontroller.util;
import java.util.Collection;
/**
* A marker interface indicating that this Collection defines a particular
* iteration order. The details about the iteration order are specified by
* the concrete implementation.
* @author gregor
*
* @param <E>
*/
public interface OrderedCollection<E> extends Collection<E> {
}