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

Method UDTFieldImpl

jOOQ/src/main/java/org/jooq/impl/UDTFieldImpl.java:60–68  ·  view source on GitHub ↗
(Name name, DataType<T> type, UDT<R> udt, Comment comment, Binding<?, T> binding)

Source from the content-addressed store, hash-verified

58 private final UDT<R> udt;
59
60 UDTFieldImpl(Name name, DataType<T> type, UDT<R> udt, Comment comment, Binding<?, T> binding) {
61 super(name, type, comment, binding);
62
63 this.udt = udt;
64
65 // [#1199] The public API of UDT returns immutable field lists
66 if (udt instanceof UDTImpl<?> u)
67 u.fields0().add(this);
68 }
69
70 @Override
71 public final UDT<R> getUDT() {

Callers

nothing calls this directly

Calls 2

addMethod · 0.65
fields0Method · 0.45

Tested by

no test coverage detected