Enum Class CounterEventTypes

java.lang.Object
java.lang.Enum<CounterEventTypes>
org.opendaylight.openflowjava.statistics.CounterEventTypes
All Implemented Interfaces:
Serializable, Comparable<CounterEventTypes>, Constable

public enum CounterEventTypes extends Enum<CounterEventTypes>
Enumeration of events to be counted with StatisticsCounters.
Author:
madamjak
  • Enum Constant Details

    • DS_ENTERED_OFJAVA

      public static final CounterEventTypes DS_ENTERED_OFJAVA
      enter message to OFJ and pass to downstream.
    • DS_FLOW_MODS_ENTERED

      public static final CounterEventTypes DS_FLOW_MODS_ENTERED
      flow-mod is entered.
    • DS_ENCODE_SUCCESS

      public static final CounterEventTypes DS_ENCODE_SUCCESS
      encode message successfully.
    • DS_ENCODE_FAIL

      public static final CounterEventTypes DS_ENCODE_FAIL
      fail encode message.
    • DS_FLOW_MODS_SENT

      public static final CounterEventTypes DS_FLOW_MODS_SENT
      flow-mod encoded and sent to downstream.
    • US_DROPPED_PACKET_IN

      public static final CounterEventTypes US_DROPPED_PACKET_IN
      packetIn message got dropped -filtering is active.
    • US_RECEIVED_IN_OFJAVA

      public static final CounterEventTypes US_RECEIVED_IN_OFJAVA
      receive message and pass to upstream.
    • US_DECODE_SUCCESS

      public static final CounterEventTypes US_DECODE_SUCCESS
      decode message successfully.
    • US_DECODE_FAIL

      public static final CounterEventTypes US_DECODE_FAIL
      fail decode message.
    • US_MESSAGE_PASS

      public static final CounterEventTypes US_MESSAGE_PASS
      pass message to consumer (end of upstream).
  • Method Details

    • values

      public static CounterEventTypes[] 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

      public static CounterEventTypes valueOf(String name)
      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 name
      NullPointerException - if the argument is null