public static enum TypedComponentIdentifier.ComponentType extends Enum<TypedComponentIdentifier.ComponentType>
| Enum Constant and Description |
|---|
ERROR_HANDLER
Error handler component type
|
FLOW
Flow component type
|
INTERCEPTING
Wraps the next defined component, controlling its invocation.
|
ON_ERROR
Error handler on error child component type
|
OPERATION
Executes an operation defined in an extension.
|
PROCESSOR
Regular component that doesn't match any of the other criterias.
|
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
public static final TypedComponentIdentifier.ComponentType INTERCEPTING
public static final TypedComponentIdentifier.ComponentType PROCESSOR
public static final TypedComponentIdentifier.ComponentType ERROR_HANDLER
public static final TypedComponentIdentifier.ComponentType ON_ERROR
public static final TypedComponentIdentifier.ComponentType UNKNOWN
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 © 2017 MuleSoft, Inc.. All rights reserved.