Uses of Interface
org.apache.camel.spi.TypeConverterRegistry

Packages that use TypeConverterRegistry
org.apache.camel The JAXB POJOs for the XML Configuration of the routing rules. 
org.apache.camel.component.file The File Component for working with file systems. 
org.apache.camel.impl Default implementation classes for Camel Core 
org.apache.camel.impl.converter Default implementation classes the Type Conversion Strategies 
 

Uses of TypeConverterRegistry in org.apache.camel
 

Methods in org.apache.camel that return TypeConverterRegistry
 TypeConverterRegistry CamelContext.getTypeConverterRegistry()
          Returns the type converter registry where type converters can be added or looked up
 

Uses of TypeConverterRegistry in org.apache.camel.component.file
 

Methods in org.apache.camel.component.file with parameters of type TypeConverterRegistry
static Object GenericFileConverter.convertTo(Class<?> type, Exchange exchange, Object value, TypeConverterRegistry registry)
           
 

Uses of TypeConverterRegistry in org.apache.camel.impl
 

Classes in org.apache.camel.impl that implement TypeConverterRegistry
 class ReportingTypeConverterRegistry
          Registry for reporting type converters.
 

Methods in org.apache.camel.impl that return TypeConverterRegistry
 TypeConverterRegistry DefaultCamelContext.getTypeConverterRegistry()
           
 

Methods in org.apache.camel.impl with parameters of type TypeConverterRegistry
protected  void ReportingTypeConverterLoader.registerTypeConverter(TypeConverterRegistry registry, Method method, Class toType, Class fromType, TypeConverter typeConverter)
           
 void DefaultCamelContext.setTypeConverterRegistry(TypeConverterRegistry typeConverterRegistry)
           
 

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

Classes in org.apache.camel.impl.converter that implement TypeConverterRegistry
 class DefaultTypeConverter
          Default implementation of a type converter registry used for type converters in Camel.
 

Methods in org.apache.camel.impl.converter with parameters of type TypeConverterRegistry
 void TypeConverterLoader.load(TypeConverterRegistry registry)
          A pluggable strategy to load type converters into a registry from some kind of mechanism
 void AnnotationTypeConverterLoader.load(TypeConverterRegistry registry)
           
protected  void AnnotationTypeConverterLoader.loadConverterMethods(TypeConverterRegistry registry, Class type)
          Loads all of the converter methods for the given type
protected  void AnnotationTypeConverterLoader.registerFallbackTypeConverter(TypeConverterRegistry registry, TypeConverter typeConverter)
           
protected  void AnnotationTypeConverterLoader.registerTypeConverter(TypeConverterRegistry registry, Method method, Class toType, Class fromType, TypeConverter typeConverter)
           
 

Constructors in org.apache.camel.impl.converter with parameters of type TypeConverterRegistry
CachingInjector(TypeConverterRegistry repository, Class<T> type)
           
InstanceMethodFallbackTypeConverter(CachingInjector injector, Method method, TypeConverterRegistry registry)
           
StaticMethodFallbackTypeConverter(Method method, TypeConverterRegistry registry)
           
 



Apache CAMEL