public enum ControlMessageType extends Enum<ControlMessageType>
| Enum Constant and Description |
|---|
ALL
All message types.
|
FLOW_MOD_PACKET
Mapped to FLOW-MOD message of OpenFlow.
|
FLOW_REMOVED_PACKET
Mapped to FLOW-REMOVED message of OpenFlow.
|
INBOUND_PACKET
Mapped to PACKET-IN message of OpenFlow.
|
OUTBOUND_PACKET
Mapped to PACKET-OUT message of OpenFlow.
|
REPLY_PACKET
Mapped to STATS-REPLY message of OpenFlow.
|
REQUEST_PACKET
Mapped to STATS-REQUEST message of OpenFlow.
|
| Modifier and Type | Method and Description |
|---|---|
static ControlMessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ControlMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlMessageType INBOUND_PACKET
public static final ControlMessageType OUTBOUND_PACKET
public static final ControlMessageType FLOW_MOD_PACKET
public static final ControlMessageType FLOW_REMOVED_PACKET
public static final ControlMessageType REQUEST_PACKET
public static final ControlMessageType REPLY_PACKET
public static final ControlMessageType ALL
public static ControlMessageType[] values()
for (ControlMessageType c : ControlMessageType.values()) System.out.println(c);
public static ControlMessageType 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 © 2015. All rights reserved.