public class Table
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
Table.Attributes |
static class |
Table.Cell |
static class |
Table.ColTag |
class |
Table.Column |
class |
Table.Row |
static class |
Table.Tag |
Constructor and Description |
---|
Table() |
Modifier and Type | Method and Description |
---|---|
void |
clear() |
static Table |
fromCSV(java.lang.String s) |
static Table |
fromCSV(java.lang.String s,
char delim) |
static Table |
fromXML(java.io.Reader r) |
static Table |
fromXML(java.lang.String s) |
Table.Attributes |
getAttributes() |
Table.Tag |
getCaption() |
Table.Cell |
getCell(int row,
int col,
boolean create) |
java.util.List<Table.ColTag> |
getColTags() |
Table.Column |
getColumn(int nr) |
java.util.List<Table.Column> |
getColumns() |
double[][] |
getDoubleData() |
double[][] |
getDoubleData(int rowStart,
int numRows,
int colStart,
int numCols) |
int[][] |
getIntData() |
int[][] |
getIntData(int rowStart,
int numRows,
int colStart,
int numCols) |
int |
getNumCols() |
int |
getNumRows() |
Table.Row |
getRow(int nr) |
java.util.List<Table.Row> |
getRows() |
Table |
setAttribute(java.lang.String name,
java.lang.String value) |
Table.Tag |
setCaption(java.lang.String text) |
void |
setSize(int numRows,
int numCols) |
void |
toHtml(java.io.Writer out) |
public java.util.List<Table.ColTag> getColTags()
public Table.Attributes getAttributes()
public Table setAttribute(java.lang.String name, java.lang.String value)
public Table.Tag getCaption()
public Table.Tag setCaption(java.lang.String text)
public Table.Cell getCell(int row, int col, boolean create)
public int[][] getIntData(int rowStart, int numRows, int colStart, int numCols)
public int[][] getIntData()
public double[][] getDoubleData(int rowStart, int numRows, int colStart, int numCols)
public double[][] getDoubleData()
public void setSize(int numRows, int numCols)
public java.util.List<Table.Row> getRows()
public java.util.List<Table.Column> getColumns()
public Table.Row getRow(int nr)
public Table.Column getColumn(int nr)
public int getNumCols()
public int getNumRows()
public void clear()
public static Table fromXML(java.lang.String s)
public static Table fromXML(java.io.Reader r) throws java.io.IOException
java.io.IOException
public static Table fromCSV(java.lang.String s)
public static Table fromCSV(java.lang.String s, char delim)
public void toHtml(java.io.Writer out) throws java.io.IOException
java.io.IOException
Copyright © 2010 - 2020 Adobe. All Rights Reserved