Package org.apache.commons.convert

Interface Summary
Converter<S,T> Converter interface.
ConverterCreator ConverterCreator interface.
ConverterLoader Converter loader interface.
LocalizedConverter<S,T> Localized converter interface.
 

Class Summary
AbstractConverter<S,T> Abstract converter class.
AbstractLocalizedConverter<S,T> Abstract localized converter class.
BooleanConverters Boolean Converter classes.
BooleanConverters.BooleanToInteger An object that converts a Boolean to an Integer.
BooleanConverters.IntegerToBoolean An object that converts an Integer to a Boolean.
BooleanConverters.StringToBoolean An object that converts a String to a Boolean.
CollectionConverters Collection Converter classes.
CollectionConverters.ArrayCreator  
CollectionConverters.ArrayToList<T> An object that converts an array to a List.
CollectionConverters.ListCreator  
CollectionConverters.SetCreator  
Converters A Converter factory and utility class.
Converters.PassThruConverter<S,T> Pass-through converter used when the source and target java object types are the same.
Converters.PassThruConverterCreator  
DateTimeConverters Date/time Converter classes.
DateTimeConverters.CalendarToDate An object that converts a Calendar to a Date.
DateTimeConverters.CalendarToLong An object that converts a Calendar to a Long.
DateTimeConverters.CalendarToString An object that converts a Calendar to a String.
DateTimeConverters.CalendarToTimestamp An object that converts a Calendar to a Timestamp.
DateTimeConverters.DateToCalendar An object that converts a Date to a Calendar.
DateTimeConverters.DateToSqlDate An object that converts a java.util.Date to a java.sql.Date.
DateTimeConverters.DateToSqlTime An object that converts a java.util.Date to a java.sql.Time.
DateTimeConverters.DateToString An object that converts a java.util.Date to a String.
DateTimeConverters.DateToTimestamp An object that converts a java.util.Date to a java.sql.Timestamp.
DateTimeConverters.GenericDateToLong<S extends Date> An object that converts a java.util.Date (and its subclasses) to a Long.
DateTimeConverters.GenericLocalizedConverter<S,T>  
DateTimeConverters.LongToCalendar An object that converts a Long to a Calendar.
DateTimeConverters.LongToDate An object that converts a Long to a java.util.Date.
DateTimeConverters.LongToSqlDate An object that converts a Long to a java.sql.Date.
DateTimeConverters.LongToSqlTime An object that converts a Long to a java.sql.Time.
DateTimeConverters.LongToTimestamp An object that converts a Long to a java.sql.Timestamp.
DateTimeConverters.SqlDateToDate An object that converts a java.sql.Date to a java.util.Date.
DateTimeConverters.SqlDateToString An object that converts a java.sql.Date to a String.
DateTimeConverters.SqlDateToTimestamp An object that converts a java.sql.Date to a java.sql.Timestamp.
DateTimeConverters.SqlTimeToString An object that converts a java.sql.Time to a String.
DateTimeConverters.StringToCalendar An object that converts a String to a java.util.Calendar.
DateTimeConverters.StringToDate An object that converts a String to a java.util.Date.
DateTimeConverters.StringToSqlDate An object that converts a String to a java.sql.Date.
DateTimeConverters.StringToSqlTime An object that converts a String to a java.sql.Time.
DateTimeConverters.StringToTimestamp An object that converts a String to a java.sql.Timestamp.
DateTimeConverters.StringToTimeZone An object that converts a String ID to a java.util.TimeZone.
DateTimeConverters.TimestampToDate An object that converts a java.sql.Timestamp to a java.util.Date.
DateTimeConverters.TimestampToSqlDate An object that converts a java.sql.Timestamp to a java.sql.Date.
DateTimeConverters.TimestampToSqlTime An object that converts a java.sql.Timestamp to a java.sql.Time.
DateTimeConverters.TimestampToString An object that converts a java.sql.Timestamp to a String.
DateTimeConverters.TimeZoneToString An object that converts a java.util.TimeZone to a String ID.
GenericSingletonToList<T> An object that creates a List and adds an object to the List.
GenericSingletonToSet<T> An object that creates a Set and adds an object to the Set.
GenericToStringConverter<S> An object that converts any object to a String by calling the object's toString method..
MiscConverters Miscellaneous Converter classes.
MiscConverters.BlobToByteArray An object that converts a java.sql.Blob to a byte array.
MiscConverters.ByteArrayToByteBuffer An object that converts a byte array to a ByteBuffer.
MiscConverters.ByteBufferToByteArray An object that converts a ByteBuffer to a byte array.
MiscConverters.CharsetToString An object that converts a Charset to a character set name String.
MiscConverters.ClobToString An object that converts a java.sql.Clob to a String.
MiscConverters.DecimalFormatToString An object that converts a DecimalFormat to a format pattern String.
MiscConverters.EnumToString  
MiscConverters.NotAConverter A class used for testing ConverterLoader implementations.
MiscConverters.SimpleDateFormatToString An object that converts a SimpleDateFormat to a format pattern String.
MiscConverters.StringToCharset An object that converts a character set name String to a Charset.
MiscConverters.StringToDecimalFormat An object that converts a format pattern String to a DecimalFormat.
MiscConverters.StringToEnumConverterCreator  
MiscConverters.StringToLocale An object that converts a Locale ID String to a Locale.
MiscConverters.StringToRegexPattern An object that converts a pattern String to a Pattern.
MiscConverters.StringToSimpleDateFormat An object that converts a format String to a SimpleDateFormat.
MiscConverters.StringToUUID An object that converts a UUID String to a UUID.
NetConverters java.net Converter classes.
NetConverters.InetAddressToString An object that converts an InetAddress to a String.
NetConverters.StringToInetAddress An object that converts a String to an InetAddress.
NetConverters.StringToURI An object that converts a String to a URI.
NetConverters.StringToURL An object that converts a String to a URL.
NetConverters.URIToURL An object that converts a URI to a URL.
NetConverters.URLToURI An object that converts a URL to a URI.
NumberConverters Number Converter classes.
NumberConverters.AbstractNumberToStringConverter<N extends Number> An abstract Number to String converter class that implements some of the LocalizedConverter methods.
NumberConverters.AbstractStringToNumberConverter<N extends Number> An abstract String to Number converter class that implements some of the LocalizedConverter methods.
NumberConverters.BigDecimalToString An object that converts a BigDecimal to a String.
NumberConverters.BigIntegerToString An object that converts a BigInteger to a String.
NumberConverters.ByteToString An object that converts a Byte to a String.
NumberConverters.DoubleToString An object that converts a Double to a String.
NumberConverters.FloatToString An object that converts a Float to a String.
NumberConverters.GenericNumberToBigDecimal<N extends Number> An object that converts a Number to a BigDecimal.
NumberConverters.GenericNumberToBigInteger<N extends Number> An object that converts a Number to a BigInteger.
NumberConverters.GenericNumberToByte<N extends Number> An object that converts a Number to a Byte.
NumberConverters.GenericNumberToDouble<N extends Number> An object that converts a Number to a Double.
NumberConverters.GenericNumberToFloat<N extends Number> An object that converts a Number to a Float.
NumberConverters.GenericNumberToInteger<N extends Number> An object that converts a Number to an Integer.
NumberConverters.GenericNumberToLong<N extends Number> An object that converts a Number to a Long.
NumberConverters.GenericNumberToShort<N extends Number> An object that converts a Number to a Short.
NumberConverters.IntegerToString An object that converts an Integer to a String.
NumberConverters.LongToBigDecimal An object that converts a Long to a BigDecimal.
NumberConverters.LongToString An object that converts a Long to a String.
NumberConverters.ShortToString An object that converts a Short to a String.
NumberConverters.StringToBigDecimal An object that converts a String to a BigDecimal.
NumberConverters.StringToBigInteger An object that converts a String to a BigInteger.
NumberConverters.StringToByte An object that converts a String to a Byte.
NumberConverters.StringToDouble An object that converts a String to a Double.
NumberConverters.StringToFloat An object that converts a String to a Float.
NumberConverters.StringToInteger An object that converts a String to an Integer.
NumberConverters.StringToLong An object that converts a String to a Long.
NumberConverters.StringToShort An object that converts a String to a Short.
Util Utility methods.
 

Exception Summary
ConversionException ConversionException class.
 



Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.