MCPcopy Create free account
hub / github.com/jOOQ/jOOQ / hasEmbeddedFields

Method hasEmbeddedFields

jOOQ/src/main/java/org/jooq/impl/Tools.java:6967–6969  ·  view source on GitHub ↗
(Field<?>[] fields)

Source from the content-addressed store, hash-verified

6965
6966
6967 static final boolean hasEmbeddedFields(Field<?>[] fields) {
6968 return anyMatch(fields, f -> f.getDataType().isEmbeddable());
6969 }
6970
6971 static final boolean hasEmbeddedFields(Iterable<? extends Field<?>> fields) {
6972 return anyMatch(fields, f -> f.getDataType().isEmbeddable());

Callers 3

embeddedFieldsRowMethod · 0.95
avoidAliasPushdownMethod · 0.95
asMethod · 0.80

Calls 3

anyMatchMethod · 0.95
isEmbeddableMethod · 0.65
getDataTypeMethod · 0.65

Tested by

no test coverage detected