Uses of Interface
org.apache.camel.TypeConverter

Packages that use TypeConverter
org.apache.camel The JAXB POJOs for the XML Configuration of the routing rules. 
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.spi Service Provider Interfaces used internally by the Camel runtime which are plugin strategies. 
org.apache.camel.util Utility classes used by the core of Camel and useful for Camel component developers 
 

Uses of TypeConverter in org.apache.camel
 

Methods in org.apache.camel that return TypeConverter
 TypeConverter CamelContext.getTypeConverter()
          Returns the type converter used to coerce types from one type to another
 

Uses of TypeConverter in org.apache.camel.impl
 

Methods in org.apache.camel.impl that return TypeConverter
protected  TypeConverter DefaultCamelContext.createTypeConverter()
          Lazily create a default implementation
 TypeConverter DefaultCamelContext.getTypeConverter()
           
 

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

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

Classes in org.apache.camel.impl.converter that implement TypeConverter
 class ArrayTypeConverter
          A type converter which is used to convert to and from array types particularly for derived types of array component types and dealing with primitive array types.
 class AsyncProcessorTypeConverter
          A simple converter that can convert any Processor to an AsyncProcessor.
 class DefaultTypeConverter
          Default implementation of a type converter registry used for type converters in Camel.
 class EnumTypeConverter
          A type converter which is used to convert to and from array types particularly for derived types of array component types and dealing with primitive array types.
 class InstanceMethodTypeConverter
          A TypeConverter implementation which instantiates an object so that an instance method can be used as a type converter
 class PropertyEditorTypeConverter
          Uses the PropertyEditor conversion system to convert Objects to and from String values.
 class StaticMethodTypeConverter
          A TypeConverter implementation which invokes a static method to convert from a type to another type
 class ToStringTypeConverter
          A simple converter that can convert any object to a String type by using the toString() method of the object.
 

Methods in org.apache.camel.impl.converter that return TypeConverter
protected  TypeConverter DefaultTypeConverter.findTypeConverter(Class toType, Class fromType, Object value)
          Tries to auto-discover any available type converters
protected
<T> TypeConverter
DefaultTypeConverter.getOrFindTypeConverter(Class toType, Object value)
           
 TypeConverter DefaultTypeConverter.getTypeConverter(Class toType, Class fromType)
           
 

Methods in org.apache.camel.impl.converter with parameters of type TypeConverter
 void DefaultTypeConverter.addFallbackConverter(TypeConverter converter)
           
 void DefaultTypeConverter.addTypeConverter(Class toType, Class fromType, TypeConverter typeConverter)
           
 void TypeConverterRegistry.addTypeConverter(Class toType, Class fromType, TypeConverter typeConverter)
          Allows a new type converter to be registered
protected  void AnnotationTypeConverterLoader.registerTypeConverter(TypeConverterRegistry registry, Method method, Class toType, Class fromType, TypeConverter typeConverter)
           
 

Uses of TypeConverter in org.apache.camel.spi
 

Methods in org.apache.camel.spi with parameters of type TypeConverter
 void TypeConverterAware.setTypeConverter(TypeConverter parentTypeConverter)
          Injects the root type converter.
 

Uses of TypeConverter in org.apache.camel.util
 

Methods in org.apache.camel.util with parameters of type TypeConverter
static boolean IntrospectionSupport.setProperties(TypeConverter typeConverter, Object target, Map props)
           
static boolean IntrospectionSupport.setProperty(TypeConverter typeConverter, Object target, String name, Object value)
           
 



Copyright © 2008 IONA Open Source Community. All Rights Reserved.