Uses of Class
org.openflow.protocol.queue.OFQueueProperty

Packages that use OFQueueProperty
org.openflow.protocol.factory   
org.openflow.protocol.queue   
 

Uses of OFQueueProperty in org.openflow.protocol.factory
 

Methods in org.openflow.protocol.factory that return OFQueueProperty
 OFQueueProperty OFQueuePropertyFactory.getQueueProperty(OFQueuePropertyType t)
          Retrieves an OFQueueProperty instance corresponding to the specified OFQueuePropertyType
 OFQueueProperty BasicFactory.getQueueProperty(OFQueuePropertyType t)
           
 

Methods in org.openflow.protocol.factory that return types with arguments of type OFQueueProperty
 java.util.List<OFQueueProperty> OFQueuePropertyFactory.parseQueueProperties(java.nio.ByteBuffer data, int length)
          Attempts to parse and return all OFQueueProperties contained in the given ByteBuffer, beginning at the ByteBuffer's position, and ending at position+length.
 java.util.List<OFQueueProperty> BasicFactory.parseQueueProperties(java.nio.ByteBuffer data, int length)
           
 java.util.List<OFQueueProperty> OFQueuePropertyFactory.parseQueueProperties(java.nio.ByteBuffer data, int length, int limit)
          Attempts to parse and return all OFQueueProperties contained in the given ByteBuffer, beginning at the ByteBuffer's position, and ending at position+length.
 java.util.List<OFQueueProperty> BasicFactory.parseQueueProperties(java.nio.ByteBuffer data, int length, int limit)
           
 

Uses of OFQueueProperty in org.openflow.protocol.queue
 

Subclasses of OFQueueProperty in org.openflow.protocol.queue
 class OFQueuePropertyMaxRate
          Corresponds to the struct struct ofp_queue_prop_min_rate OpenFlow structure
 class OFQueuePropertyMinRate
          Corresponds to the struct struct ofp_queue_prop_min_rate OpenFlow structure
 

Fields in org.openflow.protocol.queue with type parameters of type OFQueueProperty
protected  java.lang.Class<? extends OFQueueProperty> OFQueuePropertyType.clazz
           
protected  java.lang.reflect.Constructor<? extends OFQueueProperty> OFQueuePropertyType.constructor
           
protected  Instantiable<OFQueueProperty> OFQueuePropertyType.instantiable
           
protected  java.util.List<OFQueueProperty> OFPacketQueue.properties
           
 

Methods in org.openflow.protocol.queue that return OFQueueProperty
protected  OFQueueProperty OFQueueProperty.clone()
           
 OFQueueProperty OFQueuePropertyType.newInstance()
          Returns a new instance of the OFQueueProperty represented by this OFQueuePropertyType
 OFQueueProperty OFQueueProperty.setType(OFQueuePropertyType type)
           
 

Methods in org.openflow.protocol.queue that return types with arguments of type OFQueueProperty
 java.lang.reflect.Constructor<? extends OFQueueProperty> OFQueuePropertyType.getConstructor()
          Returns the no-argument Constructor of the implementation class for this OFQueuePropertyType
 Instantiable<OFQueueProperty> OFQueuePropertyType.getInstantiable()
           
 java.util.List<OFQueueProperty> OFPacketQueue.getProperties()
           
 java.lang.Class<? extends OFQueueProperty> OFQueuePropertyType.toClass()
           
 

Method parameters in org.openflow.protocol.queue with type arguments of type OFQueueProperty
 void OFQueuePropertyType.setInstantiable(Instantiable<OFQueueProperty> instantiable)
           
 OFPacketQueue OFPacketQueue.setProperties(java.util.List<OFQueueProperty> properties)
           
 

Constructor parameters in org.openflow.protocol.queue with type arguments of type OFQueueProperty
OFQueuePropertyType(int type, java.lang.String name, java.lang.Class<? extends OFQueueProperty> clazz, Instantiable<OFQueueProperty> instantiable)
          Store some information about the OpenFlow Queue Property type, including wire protocol type number, length, and derived class
OFQueuePropertyType(int type, java.lang.String name, java.lang.Class<? extends OFQueueProperty> clazz, Instantiable<OFQueueProperty> instantiable)
          Store some information about the OpenFlow Queue Property type, including wire protocol type number, length, and derived class