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 SummaryConstructors
- 
Method SummaryModifier 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- 
LogicalFunctionspublic LogicalFunctions()
 
- 
- 
Method Details- 
ANDReturns true if all arguments are considered true, false otherwise. Argument must be a logical result or a direct boolean value.
- 
FALSEReturns the logical value FALSE.
- 
TRUEReturns the logical value TRUE.
- 
NOTReturns the negation of the specified boolean expression.
- 
ORReturns true if any of the arguments is considered true, false otherwise. Argument must be a logical result or a direct boolean value.
- 
IFReturns one of two values, depending on a test condition.
- 
EQUALSChecks if the two specified objects are equal.
 
-