MCPcopy
hub / github.com/jOOQ/jOOQ / createField

Method createField

jOOQ/src/main/java/org/jooq/impl/UDTImpl.java:242–245  ·  view source on GitHub ↗

Subclasses may call this method to create UDTField objects that are linked to this table. @param name The name of the field (case-sensitive!) @param type The data type of the field @deprecated - 3.12.0 - [#8000] - Use #createField(Name, DataType, UDT) instead

(String name, DataType<? extends T> type, UDT<R> udt)

Source from the content-addressed store, hash-verified

240 * instead.
241 */
242 @Deprecated
243 protected static final <R extends UDTRecord<R>, T> UDTField<R, T> createField(String name, DataType<? extends T> type, UDT<R> udt) {
244 return createField(DSL.name(name), type, udt, "", null, null);
245 }
246
247 /**
248 * Subclasses may call this method to create {@link UDTField} objects that

Callers 15

initMethod · 0.95
generateSyntheticDaoMethod · 0.45
RenamedUDTMethod · 0.45
RenamedTableMethod · 0.45
SnapshotTableMethod · 0.45
SnapshotUDTMethod · 0.45
FilteredTableMethod · 0.45
initAttributesMethod · 0.45
initColumnsMethod · 0.45
HistoryClass · 0.45
InterpretedTableMethod · 0.45
InterpretedUDTMethod · 0.45

Calls 4

nameMethod · 0.95
newBindingMethod · 0.95
commentMethod · 0.95
asConvertedDataTypeMethod · 0.65

Tested by

no test coverage detected