Package org.javlo.component.ecom
Class Array
- java.lang.Object
-
- org.javlo.component.ecom.Array
-
public class Array extends Object
- Author:
- pvandermaesen
-
-
Constructor Summary
Constructors Constructor Description Array()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddEmptyRow()voidaddRow(String[] row)Stringdecode(String value)voiddeleteRow(int delRow)Stringencode(String value)voidfromString(String in)doublegetCellDoubleValue(int r, int c)StringgetCellValue(int r, int c)StringgetCellValueConvertFormated(int r, int c, double k, int digit)StringgetCellValueFormated(int r, int c, int digit)StringgetColTitle(int c)StringgetRowTitle(int r)intgetSize()intgetWidth()voidsetCellValue(int r, int c, String value)voidsetColTitle(int c, String value)voidsetRowTitle(int r, String title)voidsort(int col)StringtoString()
-
-
-
Method Detail
-
fromString
public void fromString(String in)
-
getColTitle
public String getColTitle(int c)
-
setColTitle
public void setColTitle(int c, String value)
-
getRowTitle
public String getRowTitle(int r)
-
setRowTitle
public void setRowTitle(int r, String title)
-
getCellDoubleValue
public double getCellDoubleValue(int r, int c)
-
getCellValue
public String getCellValue(int r, int c)
-
setCellValue
public void setCellValue(int r, int c, String value)
-
getCellValueFormated
public String getCellValueFormated(int r, int c, int digit)
-
getCellValueConvertFormated
public String getCellValueConvertFormated(int r, int c, double k, int digit)
-
addRow
public void addRow(String[] row)
-
addEmptyRow
public void addEmptyRow()
-
deleteRow
public void deleteRow(int delRow)
-
getSize
public int getSize()
-
getWidth
public int getWidth()
-
sort
public void sort(int col)
-
-