Class LogicalFunctions
java.lang.Object
net.sf.jasperreports.functions.standard.LogicalFunctions
This class should maintain all functions that allows logic decisions, and belong to the Logical category.
- Author:
- Massimo Rabbi (mrabbi@users.sourceforge.net)
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Boolean
Returns true if all arguments are considered true, false otherwise.static Boolean
Checks if the two specified objects are equal.static Boolean
FALSE()
Returns the logical value FALSE.static Object
Returns one of two values, depending on a test condition.static Boolean
Returns the negation of the specified boolean expression.static Boolean
Returns true if any of the arguments is considered true, false otherwise.static Boolean
TRUE()
Returns the logical value TRUE.
-
Constructor Details
-
LogicalFunctions
public LogicalFunctions()
-
-
Method Details
-
AND
Returns true if all arguments are considered true, false otherwise. Argument must be a logical result or a direct boolean value. -
FALSE
Returns the logical value FALSE. -
TRUE
Returns the logical value TRUE. -
NOT
Returns the negation of the specified boolean expression. -
OR
Returns true if any of the arguments is considered true, false otherwise. Argument must be a logical result or a direct boolean value. -
IF
Returns one of two values, depending on a test condition. -
EQUALS
Checks if the two specified objects are equal.
-