public enum PipelineHandlers extends Enum<PipelineHandlers>
| Enum Constant and Description |
|---|
CHANNEL_OUTBOUNF_QUEUE
Performs efficient flushing
|
DELEGATING_INBOUND_HANDLER
Delegates translated POJOs into MessageConsumer
|
IDLE_HANDLER
Detects radioHead idle state
|
OCP_DECODER
Transforms OCP Protocol byte messages into POJOs
|
OCP_ENCODER
Transforms POJOs into OCP Protocol byte messages
|
OCP_XML_DECODER
Decodes incoming messages into message frames
|
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 OCP_XML_DECODER
public static final PipelineHandlers OCP_DECODER
public static final PipelineHandlers OCP_ENCODER
public static final PipelineHandlers DELEGATING_INBOUND_HANDLER
public static final PipelineHandlers CHANNEL_OUTBOUNF_QUEUE
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 © 2016 OpenDaylight. All Rights Reserved.