Interface RowMetadata


public interface RowMetadata

Exposes database row metadata.

Since:
1.2
Author:
Jeremy Kuhn
  • Method Details

    • getColumnNames

      Collection<String> getColumnNames()

      Returns the names of the columns in a row.

      Returns:
      a list of columns names
    • getColumnMetadatas

      Collection<ColumnMetadata> getColumnMetadatas()

      Returns the list of column metadata.

      Returns:
      a list of column metadata
    • getColumnMetadata

      ColumnMetadata getColumnMetadata(int index)

      Returns the column metadata of the column at the specified index in the row.

      Parameters:
      index - the index of the column in the row
      Returns:
      a column metadata or null
    • getColumnMetadata

      ColumnMetadata getColumnMetadata(String name)

      Returns the column metadata of the column identified by the specified name in the row.

      Parameters:
      name - the name of the column in the row
      Returns:
      a column metadata or null