Brian O'Connor | c67f9fa | 2014-08-07 18:17:46 -0700 | [diff] [blame] | 1 | package net.floodlightcontroller.util; |
2 | |||||
3 | import 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 | * @author gregor | ||||
10 | * | ||||
11 | * @param <E> | ||||
12 | */ | ||||
13 | public interface OrderedCollection<E> extends Collection<E> { | ||||
14 | |||||
15 | } |