Uses of Class
org.apache.camel.TypeConversionException

Packages that use TypeConversionException
org.apache.camel The core Camel API. 
org.apache.camel.support Base classes that help to implement the camel API and are expected to be extended by the user 
org.apache.camel.util Utility classes used by the core of Camel. 
 

Uses of TypeConversionException in org.apache.camel
 

Methods in org.apache.camel that throw TypeConversionException
<T> T
TypeConverter.convertTo(Class<T> type, Exchange exchange, Object value)
          Converts the value to the specified type in the context of an exchange

Used when conversion requires extra information from the current exchange (such as encoding).

<T> T
TypeConverter.convertTo(Class<T> type, Object value)
          Converts the value to the specified type
<T> T
TypeConverter.mandatoryConvertTo(Class<T> type, Exchange exchange, Object value)
          Converts the value to the specified type in the context of an exchange

Used when conversion requires extra information from the current exchange (such as encoding).

<T> T
TypeConverter.mandatoryConvertTo(Class<T> type, Object value)
          Converts the value to the specified type
 

Uses of TypeConversionException in org.apache.camel.support
 

Methods in org.apache.camel.support that throw TypeConversionException
<T> T
TypeConverterSupport.convertTo(Class<T> type, Object value)
           
<T> T
TypeConverterSupport.mandatoryConvertTo(Class<T> type, Exchange exchange, Object value)
           
<T> T
TypeConverterSupport.mandatoryConvertTo(Class<T> type, Object value)
           
 

Uses of TypeConversionException in org.apache.camel.util
 

Methods in org.apache.camel.util that throw TypeConversionException
static
<T> T
ExchangeHelper.convertToMandatoryType(Exchange exchange, Class<T> type, Object value)
          Converts the value to the given expected type or throws an exception
static
<T> T
ExchangeHelper.convertToType(Exchange exchange, Class<T> type, Object value)
          Converts the value to the given expected type
static
<T> T
ExchangeHelper.getMandatoryHeader(Exchange exchange, String headerName, Class<T> type)
          Gets the mandatory inbound header of the correct type
 



Apache CAMEL