Uses of Class
net.floodlightcontroller.debugcounter.IDebugCounterService.CounterType

Packages that use IDebugCounterService.CounterType
net.floodlightcontroller.debugcounter   
net.floodlightcontroller.debugcounter.web   
 

Uses of IDebugCounterService.CounterType in net.floodlightcontroller.debugcounter
 

Methods in net.floodlightcontroller.debugcounter that return IDebugCounterService.CounterType
 IDebugCounterService.CounterType DebugCounter.CounterInfo.getCtype()
           
static IDebugCounterService.CounterType IDebugCounterService.CounterType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IDebugCounterService.CounterType[] IDebugCounterService.CounterType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in net.floodlightcontroller.debugcounter with parameters of type IDebugCounterService.CounterType
 IDebugCounter NullDebugCounter.registerCounter(java.lang.String moduleName, java.lang.String counterHierarchy, java.lang.String counterDescription, IDebugCounterService.CounterType counterType, java.lang.String... metaData)
           
 IDebugCounter IDebugCounterService.registerCounter(java.lang.String moduleName, java.lang.String counterHierarchy, java.lang.String counterDescription, IDebugCounterService.CounterType counterType, java.lang.String... metaData)
          All modules that wish to have the DebugCounterService count for them, must register their counters by making this call (typically from that module's 'startUp' method).
 IDebugCounter DebugCounter.registerCounter(java.lang.String moduleName, java.lang.String counterHierarchy, java.lang.String counterDescription, IDebugCounterService.CounterType counterType, java.lang.String... metaData)
           
 

Constructors in net.floodlightcontroller.debugcounter with parameters of type IDebugCounterService.CounterType
DebugCounter.CounterInfo(int counterId, boolean enabled, java.lang.String moduleName, java.lang.String counterHierarchy, java.lang.String desc, IDebugCounterService.CounterType ctype, java.lang.String... metaData)
           
 

Uses of IDebugCounterService.CounterType in net.floodlightcontroller.debugcounter.web
 

Methods in net.floodlightcontroller.debugcounter.web that return IDebugCounterService.CounterType
 IDebugCounterService.CounterType DebugCounterResource.DebugCounterInfoOutput.DCInfo.getCounterType()