Package org.apache.camel
Enum ExchangePropertyKey
- java.lang.Object
-
- java.lang.Enum<ExchangePropertyKey>
-
- org.apache.camel.ExchangePropertyKey
-
- All Implemented Interfaces:
Serializable
,Comparable<ExchangePropertyKey>
public enum ExchangePropertyKey extends Enum<ExchangePropertyKey>
An enum of common and known keys for exchange properties used by camel-core.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExchangePropertyKey
asExchangePropertyKey(String name)
String
getName()
static ExchangePropertyKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExchangePropertyKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AGGREGATED_COMPLETED_BY
public static final ExchangePropertyKey AGGREGATED_COMPLETED_BY
-
AGGREGATED_CORRELATION_KEY
public static final ExchangePropertyKey AGGREGATED_CORRELATION_KEY
-
AGGREGATED_SIZE
public static final ExchangePropertyKey AGGREGATED_SIZE
-
AGGREGATED_TIMEOUT
public static final ExchangePropertyKey AGGREGATED_TIMEOUT
-
AGGREGATION_COMPLETE_ALL_GROUPS
public static final ExchangePropertyKey AGGREGATION_COMPLETE_ALL_GROUPS
-
AGGREGATION_COMPLETE_CURRENT_GROUP
public static final ExchangePropertyKey AGGREGATION_COMPLETE_CURRENT_GROUP
-
AGGREGATION_STRATEGY
public static final ExchangePropertyKey AGGREGATION_STRATEGY
-
BATCH_COMPLETE
public static final ExchangePropertyKey BATCH_COMPLETE
-
BATCH_INDEX
public static final ExchangePropertyKey BATCH_INDEX
-
BATCH_SIZE
public static final ExchangePropertyKey BATCH_SIZE
-
CHARSET_NAME
public static final ExchangePropertyKey CHARSET_NAME
-
CIRCUIT_BREAKER_RESPONSE_SUCCESSFUL_EXECUTION
public static final ExchangePropertyKey CIRCUIT_BREAKER_RESPONSE_SUCCESSFUL_EXECUTION
-
CIRCUIT_BREAKER_RESPONSE_FROM_FALLBACK
public static final ExchangePropertyKey CIRCUIT_BREAKER_RESPONSE_FROM_FALLBACK
-
CIRCUIT_BREAKER_RESPONSE_SHORT_CIRCUITED
public static final ExchangePropertyKey CIRCUIT_BREAKER_RESPONSE_SHORT_CIRCUITED
-
CIRCUIT_BREAKER_RESPONSE_TIMED_OUT
public static final ExchangePropertyKey CIRCUIT_BREAKER_RESPONSE_TIMED_OUT
-
CIRCUIT_BREAKER_RESPONSE_REJECTED
public static final ExchangePropertyKey CIRCUIT_BREAKER_RESPONSE_REJECTED
-
CLAIM_CHECK_REPOSITORY
public static final ExchangePropertyKey CLAIM_CHECK_REPOSITORY
-
CORRELATION_ID
public static final ExchangePropertyKey CORRELATION_ID
-
DUPLICATE_MESSAGE
public static final ExchangePropertyKey DUPLICATE_MESSAGE
-
ERRORHANDLER_BRIDGE
public static final ExchangePropertyKey ERRORHANDLER_BRIDGE
-
ERRORHANDLER_CIRCUIT_DETECTED
public static final ExchangePropertyKey ERRORHANDLER_CIRCUIT_DETECTED
-
EVALUATE_EXPRESSION_RESULT
public static final ExchangePropertyKey EVALUATE_EXPRESSION_RESULT
-
EXCEPTION_CAUGHT
public static final ExchangePropertyKey EXCEPTION_CAUGHT
-
EXCEPTION_HANDLED
public static final ExchangePropertyKey EXCEPTION_HANDLED
-
FAILURE_ENDPOINT
public static final ExchangePropertyKey FAILURE_ENDPOINT
-
FAILURE_HANDLED
public static final ExchangePropertyKey FAILURE_HANDLED
-
FAILURE_ROUTE_ID
public static final ExchangePropertyKey FAILURE_ROUTE_ID
-
FATAL_FALLBACK_ERROR_HANDLER
public static final ExchangePropertyKey FATAL_FALLBACK_ERROR_HANDLER
-
GROUPED_EXCHANGE
public static final ExchangePropertyKey GROUPED_EXCHANGE
-
INTERCEPT_SEND_TO_ENDPOINT_WHEN_MATCHED
public static final ExchangePropertyKey INTERCEPT_SEND_TO_ENDPOINT_WHEN_MATCHED
-
LOOP_INDEX
public static final ExchangePropertyKey LOOP_INDEX
-
LOOP_SIZE
public static final ExchangePropertyKey LOOP_SIZE
-
MESSAGE_HISTORY
public static final ExchangePropertyKey MESSAGE_HISTORY
-
MULTICAST_COMPLETE
public static final ExchangePropertyKey MULTICAST_COMPLETE
-
MULTICAST_INDEX
public static final ExchangePropertyKey MULTICAST_INDEX
-
ON_COMPLETION
public static final ExchangePropertyKey ON_COMPLETION
-
ON_COMPLETION_ROUTE_IDS
public static final ExchangePropertyKey ON_COMPLETION_ROUTE_IDS
-
PARENT_UNIT_OF_WORK
public static final ExchangePropertyKey PARENT_UNIT_OF_WORK
-
RECIPIENT_LIST_ENDPOINT
public static final ExchangePropertyKey RECIPIENT_LIST_ENDPOINT
-
SLIP_ENDPOINT
public static final ExchangePropertyKey SLIP_ENDPOINT
-
SLIP_PRODUCER
public static final ExchangePropertyKey SLIP_PRODUCER
-
SPLIT_COMPLETE
public static final ExchangePropertyKey SPLIT_COMPLETE
-
SPLIT_INDEX
public static final ExchangePropertyKey SPLIT_INDEX
-
SPLIT_SIZE
public static final ExchangePropertyKey SPLIT_SIZE
-
STEP_ID
public static final ExchangePropertyKey STEP_ID
-
STREAM_CACHE_UNIT_OF_WORK
public static final ExchangePropertyKey STREAM_CACHE_UNIT_OF_WORK
-
TO_ENDPOINT
public static final ExchangePropertyKey TO_ENDPOINT
-
TRY_ROUTE_BLOCK
public static final ExchangePropertyKey TRY_ROUTE_BLOCK
-
UNIT_OF_WORK_EXHAUSTED
public static final ExchangePropertyKey UNIT_OF_WORK_EXHAUSTED
-
-
Method Detail
-
values
public static ExchangePropertyKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExchangePropertyKey c : ExchangePropertyKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExchangePropertyKey valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getName
public String getName()
-
asExchangePropertyKey
public static ExchangePropertyKey asExchangePropertyKey(String name)
-
-