Interface BooleanOperations.BinaryBooleanOperation
- Enclosing class:
BooleanOperations
private static interface BooleanOperations.BinaryBooleanOperation
Defines the interface for a binary boolean operation.
- Author:
- Holger Eichelberger
-
Method Summary
Modifier and TypeMethodDescriptionbooleanevaluate(boolean b1, boolean b2) Evaluates boolean values according to the operation.
-
Method Details
-
evaluate
boolean evaluate(boolean b1, boolean b2) Evaluates boolean values according to the operation.- Parameters:
b1- the first valueb2- the second value- Returns:
- the result value of applying the operation
-