Interface TypeConverters


public interface TypeConverters
Marker interface indicating that a class contains type converter methods annotated with Converter.

Implementing this interface allows custom converter classes to be registered at runtime with TypeConverterRegistry.addTypeConverters(Object), making all Converter-annotated methods available as converters within the current CamelContext.

At startup, Camel automatically scans the classpath for converter classes; this interface provides a way to register additional converters programmatically without requiring a classpath scan.

See Also: