Class DatascanDataQualitySpecRuleRangeExpectation


  • public final class DatascanDataQualitySpecRuleRangeExpectation
    extends java.lang.Object
    • Method Detail

      • maxValue

        public java.util.Optional<java.lang.String> maxValue()
        Returns:
        The maximum column value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.
      • minValue

        public java.util.Optional<java.lang.String> minValue()
        Returns:
        The minimum column value allowed for a row to pass this validation. At least one of minValue and maxValue need to be provided.
      • strictMaxEnabled

        public java.util.Optional<java.lang.Boolean> strictMaxEnabled()
        Returns:
        Whether each value needs to be strictly lesser than ('<') the maximum, or if equality is allowed. Only relevant if a maxValue has been defined. Default = false.
      • strictMinEnabled

        public java.util.Optional<java.lang.Boolean> strictMinEnabled()
        Returns:
        Whether each value needs to be strictly greater than ('>') the minimum, or if equality is allowed. Only relevant if a minValue has been defined. Default = false.