Uses of Class
org.openflow.protocol.meter.OFMeterBand

Packages that use OFMeterBand
org.openflow.protocol   
org.openflow.protocol.factory   
org.openflow.protocol.meter   
org.openflow.protocol.statistics   
 

Uses of OFMeterBand in org.openflow.protocol
 

Fields in org.openflow.protocol with type parameters of type OFMeterBand
protected  java.util.List<OFMeterBand> OFMeterMod.bands
           
 

Methods in org.openflow.protocol that return types with arguments of type OFMeterBand
 java.util.List<OFMeterBand> OFMeterMod.getBands()
           
 

Method parameters in org.openflow.protocol with type arguments of type OFMeterBand
 OFMeterMod OFMeterMod.setBands(java.util.List<OFMeterBand> bands)
           
 

Uses of OFMeterBand in org.openflow.protocol.factory
 

Methods in org.openflow.protocol.factory that return OFMeterBand
 OFMeterBand OFMeterBandFactory.getMeterBand(OFMeterBandType t)
          Retrieves an OFMeterBand instance corresponding to the specified OFMeterBandType
 OFMeterBand BasicFactory.getMeterBand(OFMeterBandType t)
           
 

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

Uses of OFMeterBand in org.openflow.protocol.meter
 

Subclasses of OFMeterBand in org.openflow.protocol.meter
 class OFMeterBandDrop
          Corresponds to the struct struct ofp_meter_band_drop OpenFlow structure
 class OFMeterBandDSCPRemark
          Corresponds to the struct struct ofp_meter_band_dscp_remark OpenFlow structure
 

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

Methods in org.openflow.protocol.meter that return OFMeterBand
protected  OFMeterBand OFMeterBand.clone()
           
 OFMeterBand OFMeterBandType.newInstance()
          Returns a new instance of the OFMeterBand represented by this OFMeterBandType
 OFMeterBand OFMeterBand.setBurstSize(int burstSize)
           
 OFMeterBand OFMeterBand.setRate(int rate)
           
 OFMeterBand OFMeterBand.setType(OFMeterBandType type)
           
 

Methods in org.openflow.protocol.meter that return types with arguments of type OFMeterBand
 java.lang.reflect.Constructor<? extends OFMeterBand> OFMeterBandType.getConstructor()
          Returns the no-argument Constructor of the implementation class for this OFMeterBandType
 Instantiable<OFMeterBand> OFMeterBandType.getInstantiable()
           
 java.lang.Class<? extends OFMeterBand> OFMeterBandType.toClass()
           
 

Method parameters in org.openflow.protocol.meter with type arguments of type OFMeterBand
 void OFMeterBandType.setInstantiable(Instantiable<OFMeterBand> instantiable)
           
 

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

Uses of OFMeterBand in org.openflow.protocol.statistics
 

Fields in org.openflow.protocol.statistics with type parameters of type OFMeterBand
protected  java.util.List<OFMeterBand> OFMeterConfigStatisticsReply.bands
           
 

Methods in org.openflow.protocol.statistics that return types with arguments of type OFMeterBand
 java.util.List<OFMeterBand> OFMeterConfigStatisticsReply.getBands()
           
 

Method parameters in org.openflow.protocol.statistics with type arguments of type OFMeterBand
 OFMeterConfigStatisticsReply OFMeterConfigStatisticsReply.setBands(java.util.List<OFMeterBand> bands)