Uses of Class
org.apache.flink.table.types.inference.StaticArgument
-
Packages that use StaticArgument Package Description org.apache.flink.table.functions org.apache.flink.table.types.inference -
-
Uses of StaticArgument in org.apache.flink.table.functions
Methods in org.apache.flink.table.functions with parameters of type StaticArgument Modifier and Type Method Description BuiltInFunctionDefinition.BuilderBuiltInFunctionDefinition.Builder. staticArguments(StaticArgument... staticArguments) -
Uses of StaticArgument in org.apache.flink.table.types.inference
Fields in org.apache.flink.table.types.inference with type parameters of type StaticArgument Modifier and Type Field Description static List<StaticArgument>SystemTypeInference. PROCESS_TABLE_FUNCTION_SYSTEM_ARGSMethods in org.apache.flink.table.types.inference that return StaticArgument Modifier and Type Method Description static StaticArgumentStaticArgument. scalar(String name, DataType dataType, boolean isOptional)Declares a scalar argument such asf(12)orf(otherColumn).static StaticArgumentStaticArgument. table(String name, Class<?> conversionClass, boolean isOptional, EnumSet<StaticArgumentTrait> traits)Declares a table argument such asf(t => myTable)orf(t => TABLE myTable)).static StaticArgumentStaticArgument. table(String name, DataType dataType, boolean isOptional, EnumSet<StaticArgumentTrait> traits)Declares a table argument such asf(t => myTable)orf(t => TABLE myTable)).Methods in org.apache.flink.table.types.inference that return types with arguments of type StaticArgument Modifier and Type Method Description Optional<List<StaticArgument>>TypeInference. getStaticArguments()Methods in org.apache.flink.table.types.inference with parameters of type StaticArgument Modifier and Type Method Description TypeInference.BuilderTypeInference.Builder. staticArguments(StaticArgument... staticArguments)Sets a list of arguments in a static signature that is not overloaded and does not support varargs.Method parameters in org.apache.flink.table.types.inference with type arguments of type StaticArgument Modifier and Type Method Description TypeInference.BuilderTypeInference.Builder. staticArguments(List<StaticArgument> staticArgument)Sets a list of arguments in a static signature that is not overloaded and does not support varargs.
-