Class ObjectColumnSummary
- java.lang.Object
-
- org.apache.flink.api.java.summarize.ColumnSummary
-
- org.apache.flink.api.java.summarize.ObjectColumnSummary
-
@Deprecated @PublicEvolving public class ObjectColumnSummary extends ColumnSummary
Deprecated.All Flink DataSet APIs are deprecated since Flink 1.18 and will be removed in a future Flink major version. You can still build your application in DataSet, but you should move to either the DataStream and/or Table API.Summary for a column of generic Objects (this is a fallback for unsupported types).
-
-
Constructor Summary
Constructors Constructor Description ObjectColumnSummary(long notNullCount, long nullCount)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description longgetNonNullCount()Deprecated.The number of non-null values in this column.longgetNullCount()Deprecated.The number of null values in this column.StringtoString()Deprecated.-
Methods inherited from class org.apache.flink.api.java.summarize.ColumnSummary
containsNonNull, containsNull, getTotalCount
-
-
-
-
Method Detail
-
getNonNullCount
public long getNonNullCount()
Deprecated.The number of non-null values in this column.- Specified by:
getNonNullCountin classColumnSummary
-
getNullCount
public long getNullCount()
Deprecated.Description copied from class:ColumnSummaryThe number of null values in this column.- Specified by:
getNullCountin classColumnSummary
-
-