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()
           
 TypeConverter ReportingTypeConverterRegistry.lookup(Class toType, Class fromType)
           
 

Methods in org.apache.camel.impl with parameters of type TypeConverter
 void ReportingTypeConverterRegistry.addFallbackTypeConverter(TypeConverter 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 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 FutureTypeConverter
          Future type converter.
 class InstanceMethodFallbackTypeConverter
          A TypeConverter implementation which instantiates an object so that an instance method can be used as a fallback type converter
 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 StaticMethodFallbackTypeConverter
          A TypeConverter implementation which invokes a static method as a fallback type converter from a type to another type
 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
<T> TypeConverter
DefaultTypeConverter.getOrFindTypeConverter(Class toType, Object value)
           
 TypeConverter DefaultTypeConverter.getTypeConverter(Class toType, Class fromType)
           
 TypeConverter DefaultTypeConverter.lookup(Class toType, Class fromType)
           
 

Methods in org.apache.camel.impl.converter that return types with arguments of type TypeConverter
 Map<Class,TypeConverter> DefaultTypeConverter.getToClassMappings(Class fromClass)
           
 Map<DefaultTypeConverter.TypeMapping,TypeConverter> DefaultTypeConverter.getTypeMappings()
           
 

Methods in org.apache.camel.impl.converter with parameters of type TypeConverter
 void DefaultTypeConverter.addFallbackTypeConverter(TypeConverter typeConverter)
           
 void DefaultTypeConverter.addTypeConverter(Class toType, Class fromType, TypeConverter typeConverter)
           
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 TypeConverter
FutureTypeConverter(TypeConverter converter)
           
 

Uses of TypeConverter in org.apache.camel.spi
 

Methods in org.apache.camel.spi that return TypeConverter
 TypeConverter TypeConverterRegistry.lookup(Class toType, Class fromType)
          Performs a lookup for a given type converter.
 

Methods in org.apache.camel.spi with parameters of type TypeConverter
 void TypeConverterRegistry.addFallbackTypeConverter(TypeConverter typeConverter)
          Registers a new fallback type converter
 void TypeConverterRegistry.addTypeConverter(Class toType, Class fromType, TypeConverter typeConverter)
          Registers a new type converter
 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 properties)
           
static boolean IntrospectionSupport.setProperty(TypeConverter typeConverter, Object target, String name, Object value)
           
static int ObjectHelper.typeCoerceCompare(TypeConverter converter, Object leftValue, Object rightValue)
          A helper method for comparing objects ordering in which it uses type coerce to coerce types between the left and right values.
static boolean ObjectHelper.typeCoerceEquals(TypeConverter converter, Object leftValue, Object rightValue)
          A helper method for comparing objects for equality in which it uses type coerce to coerce types between the left and right values.
static boolean ObjectHelper.typeCoerceNotEquals(TypeConverter converter, Object leftValue, Object rightValue)
          A helper method for comparing objects for equality in which it uses type coerce to coerce types between the left and right values.
 



Apache CAMEL