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 Type
    Method
    Description
    boolean
    evaluate(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 value
      b2 - the second value
      Returns:
      the result value of applying the operation