Uses of Class
org.apache.camel.NoTypeConversionAvailableException

Packages that use NoTypeConversionAvailableException
org.apache.camel The core Camel API. 
org.apache.camel.component.file The File Component for working with file systems. 
org.apache.camel.impl.converter Default implementation classes the Type Conversion Strategies 
org.apache.camel.processor.interceptor Helper classes for interceptors. 
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 NoTypeConversionAvailableException in org.apache.camel
 

Methods in org.apache.camel that throw NoTypeConversionAvailableException
<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 NoTypeConversionAvailableException in org.apache.camel.component.file
 

Methods in org.apache.camel.component.file that throw NoTypeConversionAvailableException
static Object GenericFileConverter.convertTo(Class<?> type, Exchange exchange, Object value, TypeConverterRegistry registry)
           
static InputStream GenericFileConverter.genericFileToInputStream(GenericFile<?> file, Exchange exchange)
           
static Serializable GenericFileConverter.genericFileToSerializable(GenericFile<?> file, Exchange exchange)
           
static String GenericFileConverter.genericFileToString(GenericFile<?> file, Exchange exchange)
           
 

Uses of NoTypeConversionAvailableException in org.apache.camel.impl.converter
 

Methods in org.apache.camel.impl.converter that throw NoTypeConversionAvailableException
<T> T
BaseTypeConverterRegistry.mandatoryConvertTo(Class<T> type, Exchange exchange, Object value)
           
<T> T
BaseTypeConverterRegistry.mandatoryConvertTo(Class<T> type, Object value)
           
 

Uses of NoTypeConversionAvailableException in org.apache.camel.processor.interceptor
 

Methods in org.apache.camel.processor.interceptor that throw NoTypeConversionAvailableException
 void BacklogDebugger.setMessageHeaderOnBreakpoint(String nodeId, String headerName, Object value)
           
 void BacklogDebugger.setMessageHeaderOnBreakpoint(String nodeId, String headerName, Object value, Class type)
           
 

Uses of NoTypeConversionAvailableException in org.apache.camel.support
 

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

Uses of NoTypeConversionAvailableException in org.apache.camel.util
 

Methods in org.apache.camel.util that throw NoTypeConversionAvailableException
static
<T> T
ExchangeHelper.convertToMandatoryType(Exchange exchange, Class<T> type, Object value)
          Converts the value to the given expected type or throws an exception
 



Apache Camel