Package org.araneaframework.uilib.form.converter

Contains the converter classes, which manage the task of converting the form data from one type to another.

See:
          Description

Interface Summary
ConverterProvider Provides access to registered Converters.
 

Class Summary
BaseConverter This class is the base class for form converters.
BigDecimalToDoubleConverter Converter that enables conversion of BigDecimal to Double and vice versa.
BigDecimalToFloatConverter Converter that enables conversion of BigDecimal to Float and vice versa.
BigIntegerToIntegerConverter  
BigIntegerToLongConverter  
BooleanToLongConverter Convert the Boolean to Long, true - 1, false - 0 and back
BooleanToYNConverter Convert the Boolean to String, true - "Y", false - "N" and back.
ConverterFactory This class is a Factory pattern implementation, that provides methods to make FormElements and BaseConverters.
IdenticalConverter Does not change the data.
ListConverter This converter uses a contained converter to convert individual List items thus converting the entire List.
ReverseConverter Reverses the conversion of a contained converter.
StringToBigDecimalConverter Converts String to BigDecimal and back.
StringToBooleanConverter Converts String to Boolean and back.
StringToIntegerConverter Converts String to Integer and back.
StringToLongConverter Converts String to Long and back.
TimestampToDateConverter Converts Timestamp to Date and back.
 

Package org.araneaframework.uilib.form.converter Description

Contains the converter classes, which manage the task of converting the form data from one type to another.