Class OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional
- java.lang.Object
-
- org.odpi.openmetadata.integrationservices.lineage.properties.OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional
-
public class OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional extends Object
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
Constructors Constructor Description OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditional()Default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)Compare the values of the supplied object with those stored in the current object.doublegetCount()Return the number of values in this column.longgetDistinctCount()Return the number of distinct values in this column for the rows evaluated.doublegetMax()Return the maximum value in this column.doublegetMin()Return the minimum value in this column.longgetNullCount()Return the number of null values in this column for the rows evaluated.OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditionalQuantilesgetQuantiles()Return the quantile measurements.doublegetSum()Return the total sum of values in this column for the rows evaluated.inthashCode()Return has code based on properties.voidsetCount(double count)Set up the number of values in this column.voidsetDistinctCount(long distinctCount)Set up the number of distinct values in this column for the rows evaluated.voidsetMax(double max)Set up the maximum value in this column.voidsetMin(double min)Set up the minimum value in this column.voidsetNullCount(long nullCount)Set up the number of null values in this column for the rows evaluated.voidsetQuantiles(OpenLineageDataQualityMetricsInputDataSetFacetColumnMetricsAdditionalQuantiles quantiles)Set up the quantile measurements.voidsetSum(double sum)Set up the total sum of values in this column for the rows evaluated.StringtoString()Standard toString method.
-
-
-
Method Detail
-
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
public String toString()
Standard toString method.
-
equals
public boolean equals(Object objectToCompare)
Compare the values of the supplied object with those stored in the current object.
-
-