Designing and Implementing Business Process Models : Business Rules Reference : Functions Overview : boolean inRange(Long lowerBound, Long upperBound, Long[] exclusions)
boolean inRange(Long lowerBound, Long upperBound, Long[] exclusions)
Indicates whether or not this integer (long, integer, short) value is within the specified range. The checking is inclusive, meaning that the lower and upper bounds of the range will be tested for the long value. A separate list of exclusions can be provided to indicate that even though the long value is within the range, it should not be accepted if found within the exclusions list.
Note:  
The long data type is a 64-bit two's complement integer. The signed long has a minimum value of -263 and a maximum value of 263-1. Long, integer and short data types can be passed as arguments to the function. The inRange function is overloaded and supports other numeric ranges such as double and float. To ensure that the correct signature is invoked, make sure that the proper numeric syntax is used (no decimal for integer, decimal for floating point).
Input Parameters
lowerBound
Integer The lower bound of the range to check against (inclusive).
upperBound
Integer The upper bound of the range to check against (inclusive).
exclusions
Integer List An array of items to be excluded from the range check.
Return Value
Boolean Returns true if this integer exists within the specified range, false otherwise.
Copyright © 2016 Software AG, Darmstadt, Germany.

Product LogoContact Support   |   Community   |   Feedback