org.araneaframework.uilib.form.converter |
Contains the converter classes, which manage the task of converting
the form data from one type to another.
|
Java Source File Name | Type | Comment |
BaseConverter.java | Class | This class is the base class for form converters. |
BigIntegerToIntegerConverter.java | Class | |
BigIntegerToLongConverter.java | Class | |
BooleanToLongConverter.java | Class | |
BooleanToYNConverter.java | Class | Convert the Boolean to String , true - "Y", false -
"N" and back. |
ConverterFactory.java | Class | This class is a Factory pattern implementation, that provides methods to make
org.araneaframework.uilib.form.FormElement s and
org.araneaframework.uilib.form.converter.BaseConverter s. |
ConverterProvider.java | Interface | Provides access to registered
Converter s. |
IdenticalConverter.java | Class | Does not change the data. |
ListConverter.java | Class | This converter uses a contained converter to convert individual List
items thus converting the entire List . |
ReverseConverter.java | Class | Reverses the conversion of a contained converter. |
StringToBigDecimalConverter.java | Class | Converts String to BigDecimal and back. |
StringToBooleanConverter.java | Class | Converts String to Boolean and back. |
StringToIntegerConverter.java | Class | Converts String to Integer and back. |
StringToLongConverter.java | Class | Converts String to Long and back. |
TimestampToDateConverter.java | Class | Converts Timestamp to Date and back. |