public interface RowMetadata
Exposes database row metadata.
- Since:
- 1.2
- Author:
- Jeremy Kuhn
-
Method Summary
Modifier and TypeMethodDescriptionReturns the list of column metadata.getColumnMetadata
(int index) Returns the column metadata of the column at the specified index in the row.getColumnMetadata
(String name) Returns the column metadata of the column identified by the specified name in the row.Returns the names of the columns in a row.
-
Method Details
-
getColumnNames
Collection<String> getColumnNames()Returns the names of the columns in a row.
- Returns:
- a list of columns names
-
getColumnMetadata
Collection<ColumnMetadata> getColumnMetadata()Returns the list of column metadata.
- Returns:
- a list of column metadata
-
getColumnMetadata
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
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
-