org.apache.camel.impl.converter
Class StaticMethodTypeConverter
java.lang.Object
org.apache.camel.impl.converter.StaticMethodTypeConverter
- All Implemented Interfaces:
- TypeConverter
public class StaticMethodTypeConverter
- extends Object
- implements TypeConverter
A TypeConverter
implementation which invokes a static method to convert from a type to another type
- Version:
- $Revision: 46981 $
Method Summary |
|
convertTo(Class<T> type,
Exchange exchange,
Object value)
Converts the value to the specified type in the context of an exchange
Used when conversion requires extra information from the current
exchange (such as encoding). |
|
convertTo(Class<T> type,
Object value)
Converts the value to the specified type |
String |
toString()
|
StaticMethodTypeConverter
public StaticMethodTypeConverter(Method method)
toString
public String toString()
- Overrides:
toString
in class Object
convertTo
public <T> T convertTo(Class<T> type,
Object value)
- Description copied from interface:
TypeConverter
- Converts the value to the specified type
- Specified by:
convertTo
in interface TypeConverter
- Parameters:
type
- the requested typevalue
- the value to be converted
- Returns:
- the converted value
convertTo
public <T> T convertTo(Class<T> type,
Exchange exchange,
Object value)
- Description copied from interface:
TypeConverter
- Converts the value to the specified type in the context of an exchange
Used when conversion requires extra information from the current
exchange (such as encoding).
- Specified by:
convertTo
in interface TypeConverter
- Parameters:
type
- the requested typeexchange
- the current exchangevalue
- the value to be converted
- Returns:
- the converted value
Copyright © 2009 IONA Open Source Community. All Rights Reserved.