Uses of Interface
net.floodlightcontroller.util.OrderedCollection

Packages that use OrderedCollection
net.floodlightcontroller.core   
net.floodlightcontroller.util   
 

Uses of OrderedCollection in net.floodlightcontroller.core
 

Methods in net.floodlightcontroller.core that return OrderedCollection
 OrderedCollection<IOFSwitch.PortChangeEvent> OFSwitchBase.comparePorts(java.util.Collection<ImmutablePort> ports)
           
 OrderedCollection<IOFSwitch.PortChangeEvent> OFSwitchBase.PortManager.comparePorts(java.util.Collection<ImmutablePort> newPorts)
          Compare the current ports of this switch to the newPorts list and return the changes that would be applied to transfort the current ports to the new ports.
 OrderedCollection<IOFSwitch.PortChangeEvent> IOFSwitch.comparePorts(java.util.Collection<ImmutablePort> ports)
          Compute the changes that would be required to replace the old ports of this switch with the new ports
 OrderedCollection<IOFSwitch.PortChangeEvent> OFSwitchBase.PortManager.getSinglePortChanges(ImmutablePort newPort)
          Given a new or modified port newPort, returns the list of PortChangeEvents to "transform" the current ports stored by this switch to include / represent the new port.
 OrderedCollection<IOFSwitch.PortChangeEvent> OFSwitchBase.PortManager.handlePortStatusMessage(OFPortStatus ps)
          Handle a OFPortStatus message, update the internal data structures that store ports and return the list of OFChangeEvents.
 OrderedCollection<IOFSwitch.PortChangeEvent> OFSwitchBase.processOFPortStatus(OFPortStatus ps)
           
 OrderedCollection<IOFSwitch.PortChangeEvent> IOFSwitch.processOFPortStatus(OFPortStatus ps)
          Add or modify a switch port.
 OrderedCollection<IOFSwitch.PortChangeEvent> OFSwitchBase.setPorts(java.util.Collection<ImmutablePort> ports)
           
 OrderedCollection<IOFSwitch.PortChangeEvent> IOFSwitch.setPorts(java.util.Collection<ImmutablePort> ports)
          Replace the ports of this switch with the given ports.
 OrderedCollection<IOFSwitch.PortChangeEvent> OFSwitchBase.PortManager.updatePorts(java.util.Collection<ImmutablePort> newPorts)
          Compare the current ports of this switch to the newPorts list and return the changes that would be applied to transform the current ports to the new ports.
 

Uses of OrderedCollection in net.floodlightcontroller.util
 

Classes in net.floodlightcontroller.util that implement OrderedCollection
 class LinkedHashSetWrapper<E>
          A simple wrapper / forwarder that forwards all calls to a LinkedHashSet.