I\'m creating an interface of JOOQ TableRecord
>
Would anyone be able to explain the line above?
class SomeClass>
What it means that parameter type R has to be a subclass of TableRecord and nothing else, i.e. you must use class
R
TableRecord
class Foo extends TableRecord
as the parameter for defining your class SomeClass
SomeClass