Uses of Class
org.openflow.protocol.hello.OFHelloElement

Packages that use OFHelloElement
org.openflow.protocol   
org.openflow.protocol.factory   
org.openflow.protocol.hello   
 

Uses of OFHelloElement in org.openflow.protocol
 

Fields in org.openflow.protocol with type parameters of type OFHelloElement
protected  java.util.List<OFHelloElement> OFHello.helloElements
           
 

Methods in org.openflow.protocol that return types with arguments of type OFHelloElement
 java.util.List<OFHelloElement> OFHello.getHelloElements()
          Returns read-only copies of the hello elements contained in this Hello message
 

Method parameters in org.openflow.protocol with type arguments of type OFHelloElement
 OFHello OFHello.setHelloElements(java.util.List<OFHelloElement> helloElements)
          Sets the list of hello elements this Hello message contains
 

Uses of OFHelloElement in org.openflow.protocol.factory
 

Methods in org.openflow.protocol.factory that return OFHelloElement
 OFHelloElement OFHelloElementFactory.getHelloElement(OFHelloElementType t)
          Retrieves an OFHelloElement instance corresponding to the specified OFHelloElementType
 OFHelloElement BasicFactory.getHelloElement(OFHelloElementType t)
           
 

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

Uses of OFHelloElement in org.openflow.protocol.hello
 

Subclasses of OFHelloElement in org.openflow.protocol.hello
 class OFHelloElementVersionBitmap
          Represents an ofp_hello_element_versionbitmap data
 

Fields in org.openflow.protocol.hello with type parameters of type OFHelloElement
protected  java.lang.Class<? extends OFHelloElement> OFHelloElementType.clazz
           
protected  java.lang.reflect.Constructor<? extends OFHelloElement> OFHelloElementType.constructor
           
protected  Instantiable<OFHelloElement> OFHelloElementType.instantiable
           
 

Methods in org.openflow.protocol.hello that return OFHelloElement
 OFHelloElement OFHelloElementType.newInstance()
          Returns a new instance of the OFHelloElement represented by this OFHelloElementType
 OFHelloElement OFHelloElement.setLength(short length)
           
 OFHelloElement OFHelloElement.setType(OFHelloElementType type)
           
 

Methods in org.openflow.protocol.hello that return types with arguments of type OFHelloElement
 Instantiable<OFHelloElement> OFHelloElementType.getInstantiable()
           
 

Method parameters in org.openflow.protocol.hello with type arguments of type OFHelloElement
 void OFHelloElementType.setInstantiable(Instantiable<OFHelloElement> instantiable)