Uses of Class
net.floodlightcontroller.packet.LLDPTLV

Packages that use LLDPTLV
net.floodlightcontroller.linkdiscovery.internal   
net.floodlightcontroller.packet   
 

Uses of LLDPTLV in net.floodlightcontroller.linkdiscovery.internal
 

Fields in net.floodlightcontroller.linkdiscovery.internal declared as LLDPTLV
protected  LLDPTLV LinkDiscoveryManager.controllerTLV
           
 

Uses of LLDPTLV in net.floodlightcontroller.packet
 

Subclasses of LLDPTLV in net.floodlightcontroller.packet
 class LLDPOrganizationalTLV
          The class representing LLDP Organizationally Specific TLV.
 

Fields in net.floodlightcontroller.packet declared as LLDPTLV
protected  LLDPTLV LLDP.chassisId
           
protected  LLDPTLV LLDP.portId
           
protected  LLDPTLV LLDP.ttl
           
 

Fields in net.floodlightcontroller.packet with type parameters of type LLDPTLV
protected  java.util.List<LLDPTLV> LLDP.optionalTLVList
           
 

Methods in net.floodlightcontroller.packet that return LLDPTLV
 LLDPTLV LLDPTLV.deserialize(java.nio.ByteBuffer bb)
           
 LLDPTLV LLDPOrganizationalTLV.deserialize(java.nio.ByteBuffer bb)
           
 LLDPTLV LLDP.getChassisId()
           
 LLDPTLV LLDP.getPortId()
           
 LLDPTLV LLDP.getTtl()
           
 LLDPTLV LLDPTLV.setLength(short length)
           
 LLDPTLV LLDPTLV.setType(byte type)
           
 LLDPTLV LLDPTLV.setValue(byte[] value)
           
 

Methods in net.floodlightcontroller.packet that return types with arguments of type LLDPTLV
 java.util.List<LLDPTLV> LLDP.getOptionalTLVList()
           
 

Methods in net.floodlightcontroller.packet with parameters of type LLDPTLV
 LLDP LLDP.setChassisId(LLDPTLV chassisId)
           
 LLDP LLDP.setPortId(LLDPTLV portId)
           
 LLDP LLDP.setTtl(LLDPTLV ttl)
           
 

Method parameters in net.floodlightcontroller.packet with type arguments of type LLDPTLV
 LLDP LLDP.setOptionalTLVList(java.util.List<LLDPTLV> optionalTLVList)