Package org.springframework.integration
Enum Class IntegrationPatternType
- All Implemented Interfaces:
Serializable
,Comparable<IntegrationPatternType>
,Constable
The Enterprise Integration Pattern types.
Used to indicate which pattern a target component implements.
- Since:
- 5.3
- Author:
- Artem Bilan
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
The Enterprise Integration Pattern categories.Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic IntegrationPatternType
Returns the enum constant of this class with the specified name.static IntegrationPatternType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
message_channel
-
publish_subscribe_channel
-
executor_channel
-
pollable_channel
-
reactive_channel
-
null_channel
-
bridge
-
service_activator
-
outbound_channel_adapter
-
inbound_channel_adapter
-
outbound_gateway
-
inbound_gateway
-
splitter
-
transformer
-
header_enricher
-
filter
-
content_enricher
-
header_filter
-
claim_check_in
-
claim_check_out
-
aggregator
-
resequencer
-
barrier
-
chain
-
scatter_gather
-
delayer
-
control_bus
-
router
-
recipient_list_router
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getPatternCategory
-