Enum Class CounterEventTypes
- All Implemented Interfaces:
Serializable
,Comparable<CounterEventTypes>
,Constable
Enumeration of events to be counted with StatisticsCounters.
- Author:
- madamjak
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionfail encode message.encode message successfully.enter message to OFJ and pass to downstream.flow-mod is entered.flow-mod encoded and sent to downstream.fail decode message.decode message successfully.packetIn message got dropped -filtering is active.pass message to consumer (end of upstream).receive message and pass to upstream. -
Method Summary
Modifier and TypeMethodDescriptionstatic CounterEventTypes
Returns the enum constant of this class with the specified name.static CounterEventTypes[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DS_ENTERED_OFJAVA
enter message to OFJ and pass to downstream. -
DS_FLOW_MODS_ENTERED
flow-mod is entered. -
DS_ENCODE_SUCCESS
encode message successfully. -
DS_ENCODE_FAIL
fail encode message. -
DS_FLOW_MODS_SENT
flow-mod encoded and sent to downstream. -
US_DROPPED_PACKET_IN
packetIn message got dropped -filtering is active. -
US_RECEIVED_IN_OFJAVA
receive message and pass to upstream. -
US_DECODE_SUCCESS
decode message successfully. -
US_DECODE_FAIL
fail decode message. -
US_MESSAGE_PASS
pass message to consumer (end of upstream).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-