org.apache.camel.impl.converter
Class ArrayTypeConverter
java.lang.Object
org.apache.camel.impl.converter.ArrayTypeConverter
- All Implemented Interfaces:
- TypeConverter
public class ArrayTypeConverter
- extends Object
- implements TypeConverter
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.
- 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 |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ArrayTypeConverter
public ArrayTypeConverter()
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 or null if it can not be converted
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 or null if it can not be converted
Copyright © 2008 IONA Open Source Community. All Rights Reserved.