LESS_THAN_EQUAL_TO function

LESS_THAN_EQUAL_TO function

Function Name Description Usage Input parameter Return value
LESS_THAN_EQUAL_TO Checks if an integer is less than or equal to the specified value. LESS_THAN_EQUAL_TO(value) Integer value to check. A boolean. Returns TRUE if an integer is less than or equal to the specified value, and FALSE otherwise.

Supported data type

The LESS_THAN_EQUAL_TO function supports the following data types:

  • Double
  • Integer

Example: Check if an integer is less than or equal to the specified value

Sample data: $var1$ = 35

Usage: $var1$.LESS_THAN_EQUAL_TO(15)

Check if var1 is less than or equal to 15.

Output: FALSE

Recommendation

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025年12月09日 UTC.