Module org.jooq
Package org.jooq

Interface ArrayRecord<E>

    • Method Detail

      • getList

        @Deprecated
        List<E> getList()
        Deprecated.
        - 3.7.0 - [#4566] - ArrayRecord already extends List. There is no need to call this any more.
        Get the contained array as a List.
      • set

        @Deprecated
        void set​(E... array)
        Deprecated.
        - 3.7.0 - [#4566] - Use List methods instead.
        Set the contained array.
      • set

        @Deprecated
        void set​(Collection<? extends E> list)
        Deprecated.
        - 3.7.0 - [#4566] - Use List methods instead.
        Set the contained array as a List.
      • getCatalog

        Catalog getCatalog()
        Get the record type's catalog.
      • getSchema

        Schema getSchema()
        Get the record type's schema.
      • getPackage

        Package getPackage()
        Get the UDT package.
      • getName

        String getName()
        Get the unqualified name of the array type.
      • getDataType

        DataType<E> getDataType()
        Get the data type of the array's base type.
      • getArrayType

        DataType<?> getArrayType()
        Get the data type of the array.
      • isSQLUsable

        boolean isSQLUsable()
        Whether this data type can be used from SQL statements.