blob: 9dce568683b770aae7059f9197737874dd3ba9a0 [file] [log] [blame]
tom9ccd7812014-08-25 22:43:19 -07001package org.onlab.onos.of.controller.impl.util;
alshabib1f44e8e2014-08-14 15:19:57 -07002
3import java.util.Collection;
4
5/**
6 * A marker interface indicating that this Collection defines a particular
7 * iteration order. The details about the iteration order are specified by
8 * the concrete implementation.
9 *
10 * @param <E>
11 */
12public interface OrderedCollection<E> extends Collection<E> {
13
14}