|
|||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||
See:
Description
| Interface Summary | |
|---|---|
| Converter<S,T> | A converter converts a source object of type S to a target of type T and back. |
| ConverterInfo | A meta interface a Converter may implement to describe what types he can convert between. |
| SuperConverter<S,T> | A super converter converts a source object of type S to a target of class hierarchy T. |
| SuperTwoWayConverter<S,T> | A super converter that can also convert a target object of type T to a source of class hierarchy S. |
| Class Summary | |
|---|---|
| NumberToCharacter | Converts from any JDK-standard Number implementation to a Character and back. |
| NumberToNumber | Converts from any JDK-standard Number implementation to any other JDK-standard Number implementation. |
| ObjectToString | Simply calls Object.toString() to convert any object to a string. |
| StringToBigDecimal | Converts a String to a BigDecimal using {@link BigDecimal#BigDecimal(String). |
| StringToBigInteger | Converts a String to a BigInteger using BigInteger.BigInteger(String). |
| StringToBoolean | Converts String to a Boolean. |
| StringToByte | Converts a String to a Byte and back. |
| StringToCharacter | Converts a String to a Character and back. |
| StringToDouble | Converts a String to a Double using Double.valueOf(String). |
| StringToEnum | Converts a String to a Enum using Enum.valueOf(Class, String). |
| StringToFloat | Converts a String to Float using Float.valueOf(String). |
| StringToInteger | Converts a String to an Integer using Integer.valueOf(String). |
| StringToLocale | Converts a String to a Locale using StringUtils.parseLocaleString(String). |
| StringToLong | Converts a String to a Long using Long.valueOf(String). |
| StringToShort | Converts a String to a Short using Short.valueOf(String). |
User Converter API and default Converter implementations.
|
|||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | ||||||||