Package org.apache.tapestry.coerce

Interface Summary
TypeConverter Converts a value to a specific (implicit) type.
ValueConverter Converts a value (possibly null) to an alternate data type; typically from String to boolean or a number type.
 

Class Summary
CollectionToBooleanConverter Converts from Collectionto Boolean; a non-empty collection is true.
CollectionToIteratorConverter  
MapToBooleanConverter Converts a Map to a Boolean; a non-empty Map is true.
NullToBooleanConverter Converter from null to Boolean; always false.
NullToIteratorConverter  
NumberToBooleanConverter Converts an arbitrary number to a boolean; uses the long value of the number and evaluates to true unless the value is zero.
ObjectArrayToIteratorConverter  
ObjectToBooleanConverter Converts from Object to Boolean.
ObjectToIteratorConverter Converts a lone object into an Iterator over a list of the one object.
ObjectToStringConverter  
StringToBooleanConverter Converts a String to a Boolean.
TypeConverterContribution Contribution to different TypeConverterservice's configuration points.
TypeConverterWrapper A service implementation that works around an StrategyRegistry.
ValueConverterImpl Implementation of ValueConverter.