Table of Contents

Spark DataSet - Row

About

A DataSet of row is known as a dataframe.

Management

Loop

for (int i = 0; i < row.size(); i++) {
                System.out.print(row.get(i)+",");
}

Documentation / Reference