Package org.apache.tapestry.coerce

Object conversion classes that deal with serializing / deserializing different types of data.

See:
          Description

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
BooleanArrayToIteratorConverter Converts primitive arrays of booleans to a Iterator (of a List of ) Boolean.
BooleanArrayToListConverter Converts primitive arrays of booleans to a Iterator (of a List of ) Boolean.
CharArrayToIteratorConverter  
CharArrayToListConverter  
CollectionToBooleanConverter Converts from Collectionto Boolean; a non-empty collection is true.
CollectionToIteratorConverter  
CollectionToListConverter  
IntArrayToIteratorConverter  
IntArrayToListConverter  
IteratorToListConverter  
MapToBooleanConverter Converts a Map to a Boolean; a non-empty Map is true.
NullToBooleanConverter Converter from null to Boolean; always false.
NullToIteratorConverter  
NullToListConverter  
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  
ObjectArrayToListConverter  
ObjectToBooleanConverter Converts from Object to Boolean.
ObjectToIteratorConverter Converts a lone object into an Iterator over a list of the one object.
ObjectToListConverter Converts a lone object into an Iterator over a list of the one object.
ObjectToStringConverter  
StringConvertedPropertySelectionModel IPropertySelectionModel created from a comma-seperated string by StringToPropertySelectionModelConverter.
StringToBooleanConverter Converts a String to a Boolean.
StringToListConverter Converts String values into Collection instances.
StringToPropertySelectionModelConverter Converts a string to a IPropertySelectionModel.
TypeConverterContribution Contribution to different TypeConverterservice's configuration points.
TypeConverterWrapper A service implementation that works around an StrategyRegistry.
ValueConverterImpl Implementation of ValueConverter.
 

Package org.apache.tapestry.coerce Description

Object conversion classes that deal with serializing / deserializing different types of data.

Author:
Howard Lewis Ship hlship@apache.org


Copyright © 2006-2008 Apache Software Foundation. All Rights Reserved.