Home » Spring-Framework-090522 » org.springframework » core » convert » converter »

org.springframework.core.convert.converter

Interfaces:

Converter   A converter converts a source object of type S to a target of type T.  code | html
ConverterFactory   A factory for "ranged" converters that can convert objects from S to subtypes of R.  code | html
ConverterInfo   A meta interface a Converter may implement to describe what types he can convert between.  code | html
ConverterRegistry   For registering converters with a type conversion system.  code | html
SuperConverter   A super converter converts a source object of type S to a target of class hierarchy T.  code | html
SuperTwoWayConverter   A super converter that can also convert a target object of type T to a source of class hierarchy S.  code | html

Classes:

NumberToCharacter   Converts from any JDK-standard Number implementation to a Character and back.  code | html
NumberToNumber   Converts from any JDK-standard Number implementation to any other JDK-standard Number implementation.  code | html
ObjectToString   Simply calls Object#toString() to convert any object to a string.  code | html
StringToBigDecimal   Converts a String to a BigDecimal using {@link BigDecimal#BigDecimal(String).  code | html
StringToBigInteger   Converts a String to a BigInteger using BigInteger#BigInteger(String) code | html
StringToBoolean   Converts String to a Boolean. The trueString and falseStrings are configurable.  code | html
StringToByte   Converts a String to a Byte and back.  code | html
StringToCharacter   Converts a String to a Character and back.  code | html
StringToDouble   Converts a String to a Double using Double#valueOf(String) code | html
StringToEnum   Converts a String to a Enum using Enum#valueOf(Class, String) code | html
StringToFloat   Converts a String to Float using Float#valueOf(String) code | html
StringToInteger   Converts a String to an Integer using Integer#valueOf(String) code | html
StringToLocale   Converts a String to a Locale using StringUtils#parseLocaleString(String) code | html
StringToLong   Converts a String to a Long using Long#valueOf(String) code | html
StringToShort   Converts a String to a Short using Short#valueOf(String) code | html