Uses of Class
org.apache.flink.table.connector.Projection
Packages that use Projection
-
Uses of Projection in org.apache.flink.table.connector
Methods in org.apache.flink.table.connector that return ProjectionModifier and TypeMethodDescriptionstatic ProjectionCreate aProjectionof all the fields in the provideddataType.abstract ProjectionProjection.complement(int fieldsNumber) Complement this projection.Projection.complement(DataType dataType) Likecomplement(int), using thedataTypefields count.abstract ProjectionProjection.difference(Projection other) Perform a difference of thisProjectionwith anotherProjection.static ProjectionProjection.empty()Create an emptyProjection, that is a projection that projects no fields, returning an emptyDataType.static ProjectionProjection.fromFieldNames(DataType dataType, List<String> projectedFields) static ProjectionProjection.of(int[] indexes) Create aProjectionof the providedindexes.static ProjectionProjection.of(int[][] indexes) Create aProjectionof the providedindexes.static ProjectionProjection.range(int startInclusive, int endExclusive) Create aProjectionof a field range.Methods in org.apache.flink.table.connector with parameters of type ProjectionModifier and TypeMethodDescriptionabstract ProjectionProjection.difference(Projection other) Perform a difference of thisProjectionwith anotherProjection. -
Uses of Projection in org.apache.flink.table.data.utils
Methods in org.apache.flink.table.data.utils with parameters of type ProjectionModifier and TypeMethodDescriptionstatic ProjectedRowDataProjectedRowData.from(Projection projection) Create an emptyProjectedRowDatastarting from aProjection.