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 BooleanReturns true if all arguments are considered true, false otherwise.static BooleanChecks if the two specified objects are equal.static BooleanFALSE()Returns the logical value FALSE.static ObjectReturns one of two values, depending on a test condition.static BooleanReturns the negation of the specified boolean expression.static BooleanReturns true if any of the arguments is considered true, false otherwise.static BooleanTRUE()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.
-