Package org.jooq

Interface Record1<T1>

  • All Superinterfaces:
    Attachable, java.lang.Comparable<Record>, Formattable, Record, java.io.Serializable

    public interface Record1<T1>
    extends Record
    A model type for a records with degree 1
    Author:
    Lukas Eder
    See Also:
    Row1
    • Method Detail

      • field1

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

        T1 value1()
        Get the first value.
      • value1

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

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

        T1 component1()
        Get the first value.

        This is the same as value1().