Skip to main content
  • New archived content: Talend MDM, Talend Data Catalog 8.0, and Talend 7.3 products reached their end of life in 2024. Their documentation was moved to the Talend Archive page and will no longer receive content updates.
Close announcements banner

Conversion from a float

Target data type Behavior Examples
String Returns the value as a string. 3.1415F is converted to "3.1415".
Boolean Returns false if the value is 0.0F and true otherwise. This conversion can cause a loss of data. 3.1415F is converted to true.
Integer Returns the integer part of the float number. This conversion can cause a loss of data.
  • 3.1415F is converted to 3.
  • 9.99F is converted to 9.
Decimal Returns the float value as a decimal. 3.1415F is converted to 3.1415.
Double Returns the float value as a double. 3.1415F is converted to 3.1415D.
Long Returns the integer part of the float number as a long. This conversion can cause a loss of data.
  • 3.1415F is converted to 3L.
  • 9.99F is converted to 9L.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – please let us know!