Interface DataQualityTestCase.MonotonicTestType

All Superinterfaces:
Serializable
Enclosing class:
DataQualityTestCase

public static interface DataQualityTestCase.MonotonicTestType
extends Serializable
Interface for testing monotonicity.
  • Method Details

    • getName

      String getName()
      Gets the name for the test type.
      Returns:
      name for the test type.
    • checkMonotonic

      boolean checkMonotonic​(DbArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.
    • checkMonotonic

      default boolean checkMonotonic​(DbByteArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.
    • checkMonotonic

      default boolean checkMonotonic​(DbShortArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.
    • checkMonotonic

      default boolean checkMonotonic​(DbIntArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.
    • checkMonotonic

      default boolean checkMonotonic​(DbLongArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.
    • checkMonotonic

      default boolean checkMonotonic​(DbCharArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.
    • checkMonotonic

      default boolean checkMonotonic​(DbFloatArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.
    • checkMonotonic

      default boolean checkMonotonic​(DbDoubleArray input)
      Determines if an array is monotonic.
      Parameters:
      input - input data
      Returns:
      true if the data is monotonic; false otherwise.