Uses of Class
org.apache.camel.ExchangePropertyKey
-
Packages that use ExchangePropertyKey Package Description org.apache.camel The core Camel API. -
-
Uses of ExchangePropertyKey in org.apache.camel
Methods in org.apache.camel that return ExchangePropertyKey Modifier and Type Method Description static ExchangePropertyKeyExchangePropertyKey. asExchangePropertyKey(String name)static ExchangePropertyKeyExchangePropertyKey. 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.Methods in org.apache.camel with parameters of type ExchangePropertyKey Modifier and Type Method Description ObjectExchange. getProperty(ExchangePropertyKey key)Returns a property associated with this exchange by the key<T> TExchange. getProperty(ExchangePropertyKey key, Class<T> type)Returns a property associated with this exchange by the key and specifying the type required<T> TExchange. getProperty(ExchangePropertyKey key, Object defaultValue, Class<T> type)Returns a property associated with this exchange by name and specifying the type requiredObjectExchange. removeProperty(ExchangePropertyKey key)Removes the given property on the exchangevoidExchange. setProperty(ExchangePropertyKey key, Object value)Sets a property on the exchange
-