(
Name name,
DataType<? extends T> type,
Table<R> table,
Class<P> returnType
)
| 142 | private static final JooqLogger log = JooqLogger.getLogger(Internal.class); |
| 143 | |
| 144 | public static final <R extends Record, T, P extends UDTPathTableField<R, ?, T>> P createUDTPathTableField( |
| 145 | Name name, |
| 146 | DataType<? extends T> type, |
| 147 | Table<R> table, |
| 148 | Class<P> returnType |
| 149 | ) { |
| 150 | return createUDTPathTableField(name, type, table, null, returnType, null, null, null); |
| 151 | } |
| 152 | |
| 153 | public static final <R extends Record, T, P extends UDTPathTableField<R, ?, T>> P createUDTPathTableField( |
| 154 | Name name, |
nothing calls this directly
no test coverage detected