Class OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional
java.lang.Object
org.odpi.openmetadata.integrationservices.lineage.properties.OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional
This class represents the map of data quality quartiles in the open lineage standard spec
https://github.com/OpenLineage/OpenLineage/blob/main/spec/OpenLineage.json.
-
Constructor Summary
ConstructorDescriptionDefault constructor -
Method Summary
Modifier and TypeMethodDescriptionboolean
Compare the values of the supplied object with those stored in the current object.double
getCount()
Return the number of values in this column.long
Return the number of distinct values in this column for the rows evaluated.double
getMax()
Return the maximum value in this column.double
getMin()
Return the minimum value in this column.long
Return the number of null values in this column for the rows evaluated.Return the quantile measurements.double
getSum()
Return the total sum of values in this column for the rows evaluated.int
hashCode()
Return hash code based on properties.void
setCount
(double count) Set up the number of values in this column.void
setDistinctCount
(long distinctCount) Set up the number of distinct values in this column for the rows evaluated.void
setMax
(double max) Set up the maximum value in this column.void
setMin
(double min) Set up the minimum value in this column.void
setNullCount
(long nullCount) Set up the number of null values in this column for the rows evaluated.void
setQuantiles
(OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditionalQuantiles quantiles) Set up the quantile measurements.void
setSum
(double sum) Set up the total sum of values in this column for the rows evaluated.toString()
Standard toString method.
-
Constructor Details
-
OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional
public OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional()Default constructor
-
-
Method Details
-
getNullCount
public long getNullCount()Return the number of null values in this column for the rows evaluated.- Returns:
- long
-
setNullCount
public void setNullCount(long nullCount) Set up the number of null values in this column for the rows evaluated.- Parameters:
nullCount
- long
-
getDistinctCount
public long getDistinctCount()Return the number of distinct values in this column for the rows evaluated.- Returns:
- long
-
setDistinctCount
public void setDistinctCount(long distinctCount) Set up the number of distinct values in this column for the rows evaluated.- Parameters:
distinctCount
- long
-
getSum
public double getSum()Return the total sum of values in this column for the rows evaluated.- Returns:
- double
-
setSum
public void setSum(double sum) Set up the total sum of values in this column for the rows evaluated.- Parameters:
sum
- double
-
getCount
public double getCount()Return the number of values in this column.- Returns:
- double
-
setCount
public void setCount(double count) Set up the number of values in this column.- Parameters:
count
- double
-
getMin
public double getMin()Return the minimum value in this column.- Returns:
- double
-
setMin
public void setMin(double min) Set up the minimum value in this column.- Parameters:
min
- double
-
getMax
public double getMax()Return the maximum value in this column.- Returns:
- double
-
setMax
public void setMax(double max) Set up the maximum value in this column.- Parameters:
max
- double
-
getQuantiles
public OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditionalQuantiles getQuantiles()Return the quantile measurements.- Returns:
- quantiles
-
setQuantiles
public void setQuantiles(OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditionalQuantiles quantiles) Set up the quantile measurements.- Parameters:
quantiles
- quantiles
-
toString
Standard toString method. -
equals
Compare the values of the supplied object with those stored in the current object. -
hashCode
public int hashCode()Return hash code based on properties.
-