Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
bgColorwhite

AND

This function returns TRUE if all its arguments evaluate to TRUE; it returns FALSE if one or more arguments evaluate to FALSE.

Syntax

Code Block
argument1 AND argument2 [AND ...]
  • argument1 - The first boolean condition that you want to evaluate.
  • argument2 - The first boolean condition that you want to evaluate.
  • [AND …] - Additional boolean conditions that you want to evaluate. (optional)

Return type

  • boolean

Examples

...

FALSE

...

bgColorwhite

OR

This function returns TRUE if at least one of its arguments evaluates to TRUE; it returns FALSE if none of the arguments evaluate to TRUE.

Syntax

Code Block
argument1 OR argument2 [OR ...]

argument1 - The first boolean condition that you want to evaluate. argument2 - The first boolean condition that you want to evaluate. [OR …] - Additional boolean conditions that you want to evaluate.

Return type

  • boolean

Examples

...

TRUE

...

TRUE OR ? (= UNKNOWN)

...

bgColorwhite

TRUE

This is the boolean value TRUE.

NOT


Reverses

...

bgColorwhite

FALSE

This is the boolean value FALSE.

...

Panel
bgColorwhite

NOT

This operator reverses the value of its boolean argument.


Syntax

Code Block
NOT argument


Input
  • argument - The boolean condition of which you want to reverse its value.


Return type

  • boolean


Examples

ExpressionResultType
NOT (TRUE)FALSEBooleanboolean
NOT (TRUE AND FALSE)TRUEBooleanboolean
NOT ( ? (= UNKNOWN) )UNKNOWNBooleanboolean
NOT (NOT (TRUE))TRUEBooleanboolean


Tip

Using brackets is not required, but advised to clearly indicate which boolean condition needs to be reversed.

Include Page
_nav_BackToTop_nav_BackToTop

...

bgColorwhite

UNKNOWN

You can use the '?' (question mark), representing UNKNOWN, to check if an expression or an attribute has a value.

Example

Suppose a model with an entity Person and attributes Person.name and Person.age. In runtime, a user fills out a form and enters his name, but forgets to fill out his age.

As a result:


Back to top