public enum CounterEventTypes extends Enum<CounterEventTypes>
Enum Constant and Description |
---|
DS_ENCODE_FAIL
fail encode message.
|
DS_ENCODE_SUCCESS
encode message successfully.
|
DS_ENTERED_OFJAVA
enter message to OFJ and pass to downstream.
|
DS_FLOW_MODS_ENTERED
flow-mod is entered.
|
DS_FLOW_MODS_SENT
flow-mod encoded and sent to downstream.
|
US_DECODE_FAIL
fail decode message.
|
US_DECODE_SUCCESS
decode message successfully.
|
US_DROPPED_PACKET_IN
packetIn message got dropped -filtering is active.
|
US_MESSAGE_PASS
pass message to consumer (end of upstream).
|
US_RECEIVED_IN_OFJAVA
receive message and pass to upstream.
|
Modifier and Type | Method and Description |
---|---|
static CounterEventTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CounterEventTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CounterEventTypes DS_ENTERED_OFJAVA
public static final CounterEventTypes DS_FLOW_MODS_ENTERED
public static final CounterEventTypes DS_ENCODE_SUCCESS
public static final CounterEventTypes DS_ENCODE_FAIL
public static final CounterEventTypes DS_FLOW_MODS_SENT
public static final CounterEventTypes US_DROPPED_PACKET_IN
public static final CounterEventTypes US_RECEIVED_IN_OFJAVA
public static final CounterEventTypes US_DECODE_SUCCESS
public static final CounterEventTypes US_DECODE_FAIL
public static final CounterEventTypes US_MESSAGE_PASS
public static CounterEventTypes[] values()
for (CounterEventTypes c : CounterEventTypes.values()) System.out.println(c);
public static CounterEventTypes valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020 OpenDaylight. All rights reserved.