blob: f03221284385badb0e23935959680f316d8fe315 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package net.onrc.onos.of.ctl.util;
2
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}