Package | Description |
---|---|
org.apache.camel |
The core Camel API.
|
Modifier and Type | Method and Description |
---|---|
static ExchangePropertyKey |
ExchangePropertyKey.asExchangePropertyKey(String name) |
static ExchangePropertyKey |
ExchangePropertyKey.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExchangePropertyKey[] |
ExchangePropertyKey.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Object |
Exchange.getProperty(ExchangePropertyKey key)
Returns a property associated with this exchange by the key
|
<T> T |
Exchange.getProperty(ExchangePropertyKey key,
Class<T> type)
Returns a property associated with this exchange by the key and specifying the type required
|
<T> T |
Exchange.getProperty(ExchangePropertyKey key,
Object defaultValue,
Class<T> type)
Returns a property associated with this exchange by name and specifying the type required
|
Object |
Exchange.removeProperty(ExchangePropertyKey key)
Removes the given property on the exchange
|
void |
Exchange.setProperty(ExchangePropertyKey key,
Object value)
Sets a property on the exchange
|
Apache Camel