Class StringColumnSummary
- java.lang.Object
-
- org.apache.flink.api.java.summarize.ColumnSummary
-
- org.apache.flink.api.java.summarize.StringColumnSummary
-
@Deprecated @PublicEvolving public class StringColumnSummary 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 Strings.
-
-
Constructor Summary
Constructors Constructor Description StringColumnSummary(long nonNullCount, long nullCount, long emptyCount, Integer minLength, Integer maxLength, Double meanLength)Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description longgetEmptyCount()Deprecated.Number of empty strings e.g.IntegergetMaxLength()Deprecated.Longest String length.DoublegetMeanLength()Deprecated.IntegergetMinLength()Deprecated.Shortest String length.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.Description copied from class:ColumnSummaryThe 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
-
getEmptyCount
public long getEmptyCount()
Deprecated.Number of empty strings e.g. java.lang.String.isEmpty().
-
getMinLength
public Integer getMinLength()
Deprecated.Shortest String length.
-
getMaxLength
public Integer getMaxLength()
Deprecated.Longest String length.
-
getMeanLength
public Double getMeanLength()
Deprecated.
-
-