ge
Description: The ge
function is used
for numeric comparison and returns true
if the subject is Greater Than Or
Equal To its argument. If either the subject or the argument cannot be coerced into a
Number, this function returns false
.
Subject Type: Number
Arguments:
value : The number to compare the Subject to.
Return Type: Boolean
Examples: ${fileSize:ge( 1024 )}
will return true
if the size of the FlowFile's content is at least (
is greater than or equal to) 1 kilobyte (1024 bytes). Otherwise, it will return
false
.