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

Packages that use TypeConverterRegistry
org.apache.camel The core Camel API. 
org.apache.camel.component.bean The Bean Component which will look up the bean name in the Spring ApplicationContext and use that to dispatch messages to a POJO 
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 
org.apache.camel.impl.osgi Camel OSGi Activator. 
org.apache.camel.management.mbean Camel management JMX MBeans 
org.apache.camel.spi Service Provider Interfaces used internally by the Camel runtime which are plugin 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.bean
 

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

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
 

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

Methods in org.apache.camel.impl with parameters of type TypeConverterRegistry
 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 BaseTypeConverterRegistry
          Base implementation of a type converter registry used for type converters in Camel.
 class DefaultTypeConverter
          Default implementation of a type converter registry used for type converters in Camel.
 class LazyLoadingTypeConverter
          Deprecated. will be removed in a future Camel release.
 

Methods in org.apache.camel.impl.converter with parameters of type TypeConverterRegistry
 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, Method method)
           
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)
          Deprecated. 
InstanceMethodFallbackTypeConverter(CachingInjector<?> injector, Method method, TypeConverterRegistry registry, boolean allowNull)
           
InstanceMethodTypeConverter(CachingInjector<?> injector, Method method, TypeConverterRegistry registry)
          Deprecated. 
InstanceMethodTypeConverter(CachingInjector<?> injector, Method method, TypeConverterRegistry registry, boolean allowNull)
           
StaticMethodFallbackTypeConverter(Method method, TypeConverterRegistry registry)
          Deprecated. 
StaticMethodFallbackTypeConverter(Method method, TypeConverterRegistry registry, boolean allowNull)
           
 

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

Methods in org.apache.camel.impl.osgi with parameters of type TypeConverterRegistry
 void Activator.BundleTypeConverterLoader.load(TypeConverterRegistry registry)
           
 

Uses of TypeConverterRegistry in org.apache.camel.management.mbean
 

Methods in org.apache.camel.management.mbean that return TypeConverterRegistry
 TypeConverterRegistry ManagedTypeConverterRegistry.getRegistry()
           
 

Constructors in org.apache.camel.management.mbean with parameters of type TypeConverterRegistry
ManagedTypeConverterRegistry(CamelContext context, TypeConverterRegistry registry)
           
 

Uses of TypeConverterRegistry in org.apache.camel.spi
 

Methods in org.apache.camel.spi 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
 



Apache Camel