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 void
addEmptyRow()
void
addRow(String[] row)
String
decode(String value)
void
deleteRow(int delRow)
String
encode(String value)
void
fromString(String in)
double
getCellDoubleValue(int r, int c)
String
getCellValue(int r, int c)
String
getCellValueConvertFormated(int r, int c, double k, int digit)
String
getCellValueFormated(int r, int c, int digit)
String
getColTitle(int c)
String
getRowTitle(int r)
int
getSize()
int
getWidth()
void
setCellValue(int r, int c, String value)
void
setColTitle(int c, String value)
void
setRowTitle(int r, String title)
void
sort(int col)
String
toString()
-
-
-
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)
-
-