public class

Row

extends Object
implements Comparable<T>
java.lang.Object
   ↳ org.mule.module.google.spreadsheet.model.Row

Summary

Fields
private List<Cell> cells All the initialized cells in the row
private int rowNumber Defaults to zero
Public Constructors
Row()
Public Methods
void addCell(Cell cell)
Adds the cell.
void addCell(Cell cell, int index)
Adds the cell at the index position.
int compareTo(Row o)
boolean equals(Object obj)
List<Cell> getCells()
int getRowNumber()
int hashCode()
void removeCell(int index)
void removeCell(Cell cell)
void setCells(List<Cell> cells)
void setRowNumber(int rowNumber)
void sortCells()
String toString()
[Expand]
Inherited Methods
From class java.lang.Object
From interface java.lang.Comparable

Fields

private List<Cell> cells

All the initialized cells in the row

private int rowNumber

Defaults to zero

Public Constructors

public Row ()

Public Methods

public void addCell (Cell cell)

Adds the cell. The cells row number is modified to match this row's row number

Parameters
cell - the cell

public void addCell (Cell cell, int index)

Adds the cell at the index position. The cells row number is modified to match this row's row number

Parameters
cell - the cell
index - the position of the cell in the list

public int compareTo (Row o)

Parameters
o

public boolean equals (Object obj)

Parameters
obj

public List<Cell> getCells ()

public int getRowNumber ()

public int hashCode ()

public void removeCell (int index)

Parameters
index

public void removeCell (Cell cell)

Parameters
cell

public void setCells (List<Cell> cells)

Parameters
cells

public void setRowNumber (int rowNumber)

Parameters
rowNumber

public void sortCells ()

public String toString ()