public static enum TypedComponentIdentifier.ComponentType extends Enum<TypedComponentIdentifier.ComponentType>
| Enum Constant and Description |
|---|
CHAIN
The chain contains the processors for the component definition of its parent.
|
CONFIG
A definition to be used by sources and operations.
|
CONNECTION
A connection provider within a
CONFIG. |
ERROR_HANDLER
Error handler component type
|
FLOW
Flow component type
|
INTERCEPTING
Deprecated.
Intercepting processors are a Mule 3 feature that is deprecated in Mule 4. Use interception API instead (ref:
ProcessorInterceptorFactory). |
ON_ERROR
Error handler on error child component type
|
OPERATION
Executes an operation defined in an extension.
|
OPERATION_DEF
Definition of an operation though the Mule DSL
|
OUTPUT_ATTRIBUTES_TYPE
The output attributes definition of a Mule DSL operation or source
|
OUTPUT_PAYLOAD_TYPE
The output payload definition of a Mule DSL operation or source
|
ROUTE
One of the options to be executed that belong to a
ROUTER |
ROUTER
Contains different routes and executes them based on a routing strategy.
|
SCOPE
Executes a single nested component chains adding common behaviour.
|
SOURCE
Receives something from an external system, transforms it into a
Message and vice-versa. |
UNKNOWN
Component type for components that cannot be categorized in the other component types
|
| Modifier and Type | Method and Description |
|---|---|
static TypedComponentIdentifier.ComponentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TypedComponentIdentifier.ComponentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypedComponentIdentifier.ComponentType FLOW
public static final TypedComponentIdentifier.ComponentType SOURCE
Message and vice-versa.public static final TypedComponentIdentifier.ComponentType OPERATION
public static final TypedComponentIdentifier.ComponentType SCOPE
public static final TypedComponentIdentifier.ComponentType ROUTER
@Deprecated public static final TypedComponentIdentifier.ComponentType INTERCEPTING
ProcessorInterceptorFactory).public static final TypedComponentIdentifier.ComponentType ERROR_HANDLER
public static final TypedComponentIdentifier.ComponentType ON_ERROR
public static final TypedComponentIdentifier.ComponentType UNKNOWN
public static final TypedComponentIdentifier.ComponentType ROUTE
ROUTERpublic static final TypedComponentIdentifier.ComponentType CHAIN
public static final TypedComponentIdentifier.ComponentType CONFIG
public static final TypedComponentIdentifier.ComponentType CONNECTION
CONFIG.public static final TypedComponentIdentifier.ComponentType OPERATION_DEF
public static final TypedComponentIdentifier.ComponentType OUTPUT_PAYLOAD_TYPE
public static final TypedComponentIdentifier.ComponentType OUTPUT_ATTRIBUTES_TYPE
public static TypedComponentIdentifier.ComponentType[] values()
for (TypedComponentIdentifier.ComponentType c : TypedComponentIdentifier.ComponentType.values()) System.out.println(c);
public static TypedComponentIdentifier.ComponentType 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 © 2023 MuleSoft, Inc.. All rights reserved.