MCPcopy
hub / github.com/jOOQ/jOOQ / supportedBy

Method supportedBy

jOOQ/src/main/java/org/jooq/SQLDialect.java:1279–1284  ·  view source on GitHub ↗

Get a set of supported dialect versions and successors given a dialect version. The resulting set of dialects contain all the families and dialect versions that support the argument dialect, i.e. that succeed it, including the argument dialect.

(SQLDialect dialect)

Source from the content-addressed store, hash-verified

1277 * including the argument dialect.
1278 */
1279 @NotNull
1280 public static final Set<SQLDialect> supportedBy(SQLDialect dialect) {
1281 EnumSet<SQLDialect> result = EnumSet.noneOf(SQLDialect.class);
1282 addSupportedBy(dialect, result);
1283 return result;
1284 }
1285
1286 /**
1287 * Get a set of supported dialect versions and successors given a set of

Callers 15

JavaGeneratorClass · 0.95
DDLClass · 0.95
DiffClass · 0.95
RowIsDistinctFromClass · 0.95
SetCommandClass · 0.95
AbstractDMLQueryClass · 0.95
UpdateQueryImplClass · 0.95
AlterDomainImplClass · 0.95
CreateIndexImplClass · 0.95
RollupClass · 0.95
AlterIndexImplClass · 0.95

Calls 1

addSupportedByMethod · 0.95

Tested by

no test coverage detected