Uses of Enum Class
cn.sliew.flinkful.sql.catalog.dict.CatalogType
Packages that use CatalogType
Package
Description
-
Uses of CatalogType in cn.sliew.flinkful.sql.catalog.dict
Methods in cn.sliew.flinkful.sql.catalog.dict that return CatalogTypeModifier and TypeMethodDescriptionstatic CatalogTypeReturns the enum constant of this class with the specified name.static CatalogType[]CatalogType.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of CatalogType in cn.sliew.flinkful.sql.catalog.repository.mapper
Methods in cn.sliew.flinkful.sql.catalog.repository.mapper with parameters of type CatalogTypeModifier and TypeMethodDescriptionintCatalogFunctionMapper.countByDatabase(CatalogType type, String catalog, String database) intCatalogTableMapper.countByDatabase(CatalogType type, String catalog, String database, CatalogTableKind kind) intCatalogFunctionMapper.deleteByName(CatalogType type, String catalog, String database, String name) intCatalogTableMapper.deleteByName(CatalogType type, String catalog, String database, CatalogTableKind kind, String name) CatalogFunctionMapper.selectByDatabase(CatalogType type, String catalog, String database) CatalogTableMapper.selectByDatabase(CatalogType type, String catalog, String database, CatalogTableKind kind) CatalogFunctionMapper.selectByName(CatalogType type, String catalog, String database, String name) CatalogTableMapper.selectByName(CatalogType type, String catalog, String database, CatalogTableKind kind, String name) -
Uses of CatalogType in cn.sliew.flinkful.sql.catalog.service
Methods in cn.sliew.flinkful.sql.catalog.service with parameters of type CatalogTypeModifier and TypeMethodDescriptionbooleanFlinkfulCatalogService.databaseExists(CatalogType type, String catalog, String database) voidFlinkfulCatalogStoreService.delete(CatalogType type, String catalogName) voidFlinkfulCatalogService.deleteDatabase(CatalogType type, String catalog, String database) voidFlinkfulCatalogService.deleteFunction(CatalogType type, String catalog, String database, String functionName) voidFlinkfulCatalogService.deleteTable(CatalogType type, String catalog, String database, String table) voidFlinkfulCatalogService.deleteView(CatalogType type, String catalog, String database, String viewName) booleanFlinkfulCatalogService.functionExists(CatalogType type, String catalog, String database, String function) FlinkfulCatalogStoreService.get(CatalogType type, String catalogName) FlinkfulCatalogService.getDatabase(CatalogType type, String catalog, String database) FlinkfulCatalogService.getFunction(CatalogType type, String catalog, String database, String function) FlinkfulCatalogService.getTable(CatalogType type, String catalog, String database, String table) FlinkfulCatalogService.getView(CatalogType type, String catalog, String database, String view) voidFlinkfulCatalogService.insertFunction(CatalogType type, String catalog, String database, CatalogFunctionDTO function) voidFlinkfulCatalogService.insertTable(CatalogType type, String catalog, String database, CatalogTableDTO table) voidFlinkfulCatalogService.insertView(CatalogType type, String catalog, String database, CatalogTableDTO view) booleanFlinkfulCatalogService.isDatabaseEmpty(CatalogType type, String catalog, String database) FlinkfulCatalogStoreService.list(CatalogType type) FlinkfulCatalogService.listDatabases(CatalogType type, String catalog) FlinkfulCatalogService.listFunctions(CatalogType type, String catalog, String database) FlinkfulCatalogService.listTables(CatalogType type, String catalog, String database) FlinkfulCatalogService.listViews(CatalogType type, String catalog, String database) voidFlinkfulCatalogService.renameTable(CatalogType type, String catalog, String database, String currentName, String newName) voidFlinkfulCatalogService.renameView(CatalogType type, String catalog, String database, String currentName, String newName) booleanFlinkfulCatalogService.tableExists(CatalogType type, String catalog, String database, String table) voidFlinkfulCatalogService.updateFunction(CatalogType type, String catalog, String database, CatalogFunctionDTO function) voidFlinkfulCatalogService.updateTable(CatalogType type, String catalog, String database, CatalogTableDTO table) voidFlinkfulCatalogService.updateView(CatalogType type, String catalog, String database, CatalogTableDTO view) booleanFlinkfulCatalogService.viewExists(CatalogType type, String catalog, String database, String view) -
Uses of CatalogType in cn.sliew.flinkful.sql.catalog.service.impl
Methods in cn.sliew.flinkful.sql.catalog.service.impl with parameters of type CatalogTypeModifier and TypeMethodDescriptionbooleanFlinkfulCatalogServiceImpl.databaseExists(CatalogType type, String catalog, String database) voidFlinkfulCatalogStoreServiceImpl.delete(CatalogType type, String catalogName) voidFlinkfulCatalogServiceImpl.deleteDatabase(CatalogType type, String catalog, String database) voidFlinkfulCatalogServiceImpl.deleteFunction(CatalogType type, String catalog, String database, String functionName) voidFlinkfulCatalogServiceImpl.deleteTable(CatalogType type, String catalog, String database, String table) voidFlinkfulCatalogServiceImpl.deleteView(CatalogType type, String catalog, String database, String viewName) booleanFlinkfulCatalogServiceImpl.functionExists(CatalogType type, String catalog, String database, String function) FlinkfulCatalogStoreServiceImpl.get(CatalogType type, String catalogName) FlinkfulCatalogServiceImpl.getDatabase(CatalogType type, String catalog, String database) FlinkfulCatalogServiceImpl.getFunction(CatalogType type, String catalog, String database, String function) FlinkfulCatalogServiceImpl.getTable(CatalogType type, String catalog, String database, String table) FlinkfulCatalogServiceImpl.getView(CatalogType type, String catalog, String database, String view) voidFlinkfulCatalogServiceImpl.insertFunction(CatalogType type, String catalog, String database, CatalogFunctionDTO function) voidFlinkfulCatalogServiceImpl.insertTable(CatalogType type, String catalog, String database, CatalogTableDTO table) voidFlinkfulCatalogServiceImpl.insertView(CatalogType type, String catalog, String database, CatalogTableDTO view) booleanFlinkfulCatalogServiceImpl.isDatabaseEmpty(CatalogType type, String catalog, String database) FlinkfulCatalogStoreServiceImpl.list(CatalogType type) FlinkfulCatalogServiceImpl.listDatabases(CatalogType type, String catalog) FlinkfulCatalogServiceImpl.listFunctions(CatalogType type, String catalog, String database) FlinkfulCatalogServiceImpl.listTables(CatalogType type, String catalog, String database) FlinkfulCatalogServiceImpl.listViews(CatalogType type, String catalog, String database) voidFlinkfulCatalogServiceImpl.renameTable(CatalogType type, String catalog, String database, String currentName, String newName) voidFlinkfulCatalogServiceImpl.renameView(CatalogType type, String catalog, String database, String currentName, String newName) booleanFlinkfulCatalogServiceImpl.tableExists(CatalogType type, String catalog, String database, String table) voidFlinkfulCatalogServiceImpl.updateFunction(CatalogType type, String catalog, String database, CatalogFunctionDTO function) voidFlinkfulCatalogServiceImpl.updateTable(CatalogType type, String catalog, String database, CatalogTableDTO table) voidFlinkfulCatalogServiceImpl.updateView(CatalogType type, String catalog, String database, CatalogTableDTO view) booleanFlinkfulCatalogServiceImpl.viewExists(CatalogType type, String catalog, String database, String view)