Row Class

The Row class describes and manages strings that contain delimited fields of data. Implementing strings as Row objects improves code abstraction, readability, and maintainability. The Row class provides a natural interface between ResultSets and the application logic. Other notable features of Row objects include:

Refer to the Instantiating a Row Class Object section for additional information.

Ancestor

Reference

Descendants

None

Methods

Description

getColumns

Returns a list of columns in a Row object.

getDelimiter

Returns the delimiter character used by the Row object.

setColumns

Sets the properties (columns) of a Row object.

setDelimiter

Sets the delimiter of a Row object.

toRecord

Copies the properties of the Row object into a Record object.

toString

Transforms the Row object into a formatted string.