I am going through this and this . I clearly see the type"Dataframe" is defined for scala and not for Java. Does that mean type "Dataframe" is not technically supported but rather use Dataset[T] insetad ?
And also, from this , please share inputs about what does it mean - Does that signify the same fact Java doesnt have the construct for dataframe ?
Scala Dataset[T] & DataFrame (alias for Dataset[Row])
Java Dataset[T]
DataFrameis a type alias, not a class. - Alexey RomanovDataset[Row], forgot that java can't see these though. - Danny Varod