public enum PipelineHandlers extends Enum<PipelineHandlers>
Enum Constant and Description |
---|
CHANNEL_OUTBOUND_QUEUE_MANAGER
Performs configurable efficient flushing.
|
DELEGATING_INBOUND_HANDLER
Delegates translated POJOs into MessageConsumer.
|
IDLE_HANDLER
Detects switch idle state.
|
OF_DATAGRAMPACKET_DECODER
Transforms OpenFlow Protocol datagram messages into POJOs.
|
OF_DATAGRAMPACKET_ENCODER
Transforms POJOs into OpenFlow Protocol datagrams.
|
OF_DATAGRAMPACKET_HANDLER
Decodes incoming messages into message frames and filters them based on version supported.
|
OF_DECODER
Transforms OpenFlow Protocol byte messages into POJOs.
|
OF_ENCODER
Transforms POJOs into OpenFlow Protocol byte messages.
|
OF_FRAME_DECODER
Decodes incoming messages into message frames.
|
OF_VERSION_DETECTOR
Detects version of incoming OpenFlow Protocol message.
|
SSL_HANDLER
Component for handling TLS frames.
|
Modifier and Type | Method and Description |
---|---|
static PipelineHandlers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PipelineHandlers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PipelineHandlers IDLE_HANDLER
public static final PipelineHandlers SSL_HANDLER
public static final PipelineHandlers OF_FRAME_DECODER
public static final PipelineHandlers OF_VERSION_DETECTOR
public static final PipelineHandlers OF_DECODER
public static final PipelineHandlers OF_ENCODER
public static final PipelineHandlers DELEGATING_INBOUND_HANDLER
public static final PipelineHandlers CHANNEL_OUTBOUND_QUEUE_MANAGER
public static final PipelineHandlers OF_DATAGRAMPACKET_HANDLER
public static final PipelineHandlers OF_DATAGRAMPACKET_DECODER
public static final PipelineHandlers OF_DATAGRAMPACKET_ENCODER
public static PipelineHandlers[] values()
for (PipelineHandlers c : PipelineHandlers.values()) System.out.println(c);
public static PipelineHandlers 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.