-
Notifications
You must be signed in to change notification settings - Fork 0
Computing Functions StaticValues
anymaker edited this page Apr 3, 2021
·
1 revision
Null | Return null value |
Nil | Return null value such as Null. Use it when you can't save "null" in interface |
True | Return boolean value 'true' |
False | Return boolean value 'false' |
This function returns null
System.out.println(engine.calc("null"));
System.out.println(engine.calc("null") == null);
Output
null
true
Return null value such as Null. Use it when you can't save "null" in interface.
Return boolean value 'true'
System.out.println(engine.calc("true"));
System.out.println(Boolean.TRUE.equals(engine.calc("true")));
System.out.println(Boolean.FALSE.equals(engine.calc("true")));
Output
true
true
false
Return boolean value 'false'
System.out.println(engine.calc("false"));
System.out.println(Boolean.TRUE.equals(engine.calc("false")));
System.out.println(Boolean.FALSE.equals(engine.calc("false")));
Output
false
false
true
- Home
- Extendable Query Language
- Computing
- Simple Usage
- Own Value Extraction
- Functions
- What is Type
- Known Types
- Add Own Type
- Data conversion
- Generate SQL Query
- Find files