Package com.illumon.iris.validation
Interface DataQualityTestCase.MonotonicTestType
- All Superinterfaces:
Serializable
- Enclosing class:
- DataQualityTestCase
Interface for testing monotonicity.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
checkMonotonic
(DbArray input) Determines if an array is monotonic.default boolean
checkMonotonic
(DbByteArray input) Determines if an array is monotonic.default boolean
checkMonotonic
(DbCharArray input) Determines if an array is monotonic.default boolean
checkMonotonic
(DbDoubleArray input) Determines if an array is monotonic.default boolean
checkMonotonic
(DbFloatArray input) Determines if an array is monotonic.default boolean
checkMonotonic
(DbIntArray input) Determines if an array is monotonic.default boolean
checkMonotonic
(DbLongArray input) Determines if an array is monotonic.default boolean
checkMonotonic
(DbShortArray input) Determines if an array is monotonic.getName()
Gets the name for the test type.
-
Method Details
-
getName
String getName()Gets the name for the test type.- Returns:
- name for the test type.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-
checkMonotonic
Determines if an array is monotonic.- Parameters:
input
- input data- Returns:
- true if the data is monotonic; false otherwise.
-