Module org.jooq
Package org.jooq

Interface Record1<T1>

    • Method Detail

      • fieldsRow

        @NotNull
        @NotNull Row1<T1> fieldsRow()
        Get this record's fields as a Row1.
        Specified by:
        fieldsRow in interface Record
      • valuesRow

        @NotNull
        @NotNull Row1<T1> valuesRow()
        Get this record's values as a Row1.
        Specified by:
        valuesRow in interface Record
      • field1

        @NotNull
        @NotNull Field<T1> field1()
        Get the first field.
      • value1

        T1 value1()
        Get the first value.
      • value1

        @NotNull
        @NotNull Record1<T1> value1​(T1 value)
        Set the first value.
      • values

        @NotNull
        @NotNull Record1<T1> values​(T1 t1)
        Set all values.
      • component1

        T1 component1()
        Get the first value.

        This is the same as value1().