org.apache.camel.converter
Class ObjectConverter

java.lang.Object
  extended by org.apache.camel.converter.ObjectConverter

public final class ObjectConverter
extends Object

Some core java.lang based Type Converters

Version:
$Revision: 793883 $

Method Summary
static String fromCharArray(char[] value)
           
static boolean isCollection(Object value)
           
static Iterator iterator(Object value)
          Deprecated. use ObjectHelper.createIterator(Object). Will be removed in Camel 2.0.
static boolean toBool(Object value)
          Converts the given value to a boolean, handling strings or Boolean objects; otherwise returning false if the value could not be converted to a boolean
static Boolean toBoolean(Boolean value)
          Returns the boolean value, or null if the value is null
static Boolean toBoolean(Object value)
          Converts the given value to a Boolean, handling strings or Boolean objects; otherwise returning null if the value cannot be converted to a boolean
static Byte toByte(Object value)
          Returns the converted value, or null if the value is null
static byte[] toByteArray(String value)
           
static char[] toCharArray(String value)
           
static Double toDouble(Object value)
          Returns the converted value, or null if the value is null
static Float toFloat(Object value)
          Returns the converted value, or null if the value is null
static Integer toInteger(Object value)
          Returns the converted value, or null if the value is null
static Long toLong(Object value)
          Returns the converted value, or null if the value is null
static Short toShort(Object value)
          Returns the converted value, or null if the value is null
static String toString(Boolean value)
           
static String toString(Integer value)
           
static String toString(Long value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

isCollection

public static boolean isCollection(Object value)

iterator

@Deprecated
public static Iterator iterator(Object value)
Deprecated. use ObjectHelper.createIterator(Object). Will be removed in Camel 2.0.

Creates an iterator over the value


toBool

public static boolean toBool(Object value)
Converts the given value to a boolean, handling strings or Boolean objects; otherwise returning false if the value could not be converted to a boolean


toBoolean

public static Boolean toBoolean(Object value)
Converts the given value to a Boolean, handling strings or Boolean objects; otherwise returning null if the value cannot be converted to a boolean


toBoolean

public static Boolean toBoolean(Boolean value)
Returns the boolean value, or null if the value is null


toByte

public static Byte toByte(Object value)
Returns the converted value, or null if the value is null


toByteArray

public static byte[] toByteArray(String value)

toCharArray

public static char[] toCharArray(String value)

fromCharArray

public static String fromCharArray(char[] value)

toShort

public static Short toShort(Object value)
Returns the converted value, or null if the value is null


toInteger

public static Integer toInteger(Object value)
Returns the converted value, or null if the value is null


toLong

public static Long toLong(Object value)
Returns the converted value, or null if the value is null


toFloat

public static Float toFloat(Object value)
Returns the converted value, or null if the value is null


toDouble

public static Double toDouble(Object value)
Returns the converted value, or null if the value is null


toString

public static String toString(Integer value)

toString

public static String toString(Long value)

toString

public static String toString(Boolean value)


Apache CAMEL