Class EnvironmentSettings

java.lang.Object
org.apache.flink.table.api.EnvironmentSettings

@PublicEvolving public class EnvironmentSettings extends Object
Defines all parameters that initialize a table environment. Those parameters are used only during instantiation of a TableEnvironment and cannot be changed afterwards.

Example:


 EnvironmentSettings.newInstance()
   .inStreamingMode()
   .withBuiltInCatalogName("default_catalog")
   .withBuiltInDatabaseName("default_database")
   .build()
 

inStreamingMode() or inBatchMode() might be convenient as shortcuts.