org.apache.spark.sql
Class RowFactory

Object
  extended by org.apache.spark.sql.RowFactory

public class RowFactory
extends Object

A factory class used to construct Row objects.


Constructor Summary
RowFactory()
           
 
Method Summary
static Row create(Object... values)
          Create a Row from the given arguments.
 
Methods inherited from class Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RowFactory

public RowFactory()
Method Detail

create

public static Row create(Object... values)
Create a Row from the given arguments. Position i in the argument list becomes position i in the created Row object.