Predefined Converters
Below you find an overview describing the predefined converters from the Calyxo Forms component. All of them implement the de.odysseus.calyxo.forms.Converter interface and can be found in the de.odysseus.calyxo.forms.convert package.
| Name | Class | Description |
| bigDecimal | BigDecimalConverter | Parses and formats objects of type BigDecimal. It has no properties. |
| bigInteger | BigIntegerConverter |
Parses and formats objects of type BigInteger.
Property:
|
| boolean | BooleanConverter |
Parses and formats objects of type Boolean.
Properties:
|
| byte | ByteConverter |
Parses and formats objects of type Byte.
Properties:
|
| calendar | CalendarConverter | Parses and formats objects of type Calendar. It has no properties. |
| checkbox | BooleanConverter |
Convenience converter to be used with checkbox inputs.
Parses and formats objects of type Boolean.
Empty inputs are parsed to false.
Properties:
|
| date | DateConverter | Parses and formats objects of type Date using a 'short date format'. It has no properties. |
| double | DoubleConverter |
Parses and formats objects of type Double.
Properties:
|
| float | FloatConverter |
Parses and formats objects of type Float.
Properties:
|
| integer | IntegerConverter |
Parses and formats objects of type Integer.
Properties:
|
| list | ListModelConverter |
Parses and formats objects contained in a ListModel.
The list model is located via the scope, attribute
and property properties.
Properties:
|
| long | LongConverter |
Parses and formats objects of type Long.
Properties:
|
| short | ShortConverter |
Parses and formats objects of type Short.
Properties:
|
| string | StringConverter |
Parses and formats objects of type String.
It can not fail and has one property:
|
| time | TimeConverter | Parses and formats objects of type Date using a 'short time format'. It has no properties. |


