Uses of Class
org.apache.flink.table.api.DataTypes.Field
-
Packages that use DataTypes.Field Package Description org.apache.flink.table.api org.apache.flink.table.functions org.apache.flink.table.types org.apache.flink.table.types.utils -
-
Uses of DataTypes.Field in org.apache.flink.table.api
Methods in org.apache.flink.table.api that return DataTypes.Field Modifier and Type Method Description static DataTypes.FieldDataTypes. FIELD(String name, DataType dataType)Field definition with field name and data type.static DataTypes.FieldDataTypes. FIELD(String name, DataType dataType, String description)Field definition with field name, data type, and a description.Methods in org.apache.flink.table.api with parameters of type DataTypes.Field Modifier and Type Method Description static DataTypeDataTypes. ROW(DataTypes.Field... fields)Data type of a sequence of fields.static DataTypeDataTypes. STRUCTURED(Class<?> implementationClass, DataTypes.Field... fields)Data type of a user-defined object structured type.static DataTypeDataTypes. STRUCTURED(String className, DataTypes.Field... fields)Data type of a user-defined object structured type where the given class name is not in the classpath.Method parameters in org.apache.flink.table.api with type arguments of type DataTypes.Field Modifier and Type Method Description static DataTypeDataTypes. ROW(List<DataTypes.Field> fields) -
Uses of DataTypes.Field in org.apache.flink.table.functions
Methods in org.apache.flink.table.functions with parameters of type DataTypes.Field Modifier and Type Method Description SpecializedFunction.ExpressionEvaluatorSpecializedFunction.ExpressionEvaluatorFactory. createEvaluator(String sqlExpression, DataType outputDataType, DataTypes.Field... args)Shorthand forcreateEvaluator(callSql("..."), ...).SpecializedFunction.ExpressionEvaluatorSpecializedFunction.ExpressionEvaluatorFactory. createEvaluator(Expression expression, DataType outputDataType, DataTypes.Field... args)Creates a serializable factory that can be passed into aUserDefinedFunctionfor evaluating anExpressionduring runtime. -
Uses of DataTypes.Field in org.apache.flink.table.types
Methods in org.apache.flink.table.types that return types with arguments of type DataTypes.Field Modifier and Type Method Description static List<DataTypes.Field>DataType. getFields(DataType dataType)Returns an ordered list of fields starting from the providedDataType. -
Uses of DataTypes.Field in org.apache.flink.table.types.utils
Method parameters in org.apache.flink.table.types.utils with type arguments of type DataTypes.Field Modifier and Type Method Description static DataTypeDataTypeUtils. appendRowFields(DataType dataType, List<DataTypes.Field> fields)Appends the given list of fields to an existing row data type.
-