Class SimpleComparisonResult

java.lang.Object
de.gebit.integrity.comparator.SimpleComparisonResult
All Implemented Interfaces:
ComparisonResult
Direct Known Subclasses:
MapComparisonResult

public class SimpleComparisonResult extends Object implements ComparisonResult
The most basic comparison result. This is just a boolean yes/no, without any additional information.
Author:
Rene Schneider - initial API and implementation
  • Field Details

    • EQUAL

      public static final SimpleComparisonResult EQUAL
      The result value for "equality". Can be used to prevent allocation of new objects.
    • NOT_EQUAL

      public static final SimpleComparisonResult NOT_EQUAL
      The result value for "inequality". Can be used to prevent allocation of new objects.
  • Constructor Details

    • SimpleComparisonResult

      public SimpleComparisonResult(boolean anEqualityFlag)
      Creates a new instance.
      Parameters:
      anEqualityFlag - whether the result should represent equality or inequality
  • Method Details

    • valueOf

      public static SimpleComparisonResult valueOf(boolean aValue)
      Returns the matching SimpleComparisonResult for a given boolean value.
      Parameters:
      aValue - the value
      Returns:
      the SimpleComparisonResult
    • isSuccessful

      public boolean isSuccessful()
      Description copied from interface: ComparisonResult
      Whether this result documents a successful comparison. Most of the time, this boils down to whether the result equals the expected value, but custom comparator fixtures may override this.
      Specified by:
      isSuccessful in interface ComparisonResult
      Returns:
    • equals

      public boolean equals(Object anOther)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object