|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectprefuse.data.column.AbstractColumn
prefuse.data.column.DoubleColumn
public class DoubleColumn
Column implementation for storing double values.
| Field Summary |
|---|
| Fields inherited from class prefuse.data.column.AbstractColumn |
|---|
m_columnType, m_defaultValue, m_listeners, m_parser, m_readOnly |
| Constructor Summary | |
|---|---|
DoubleColumn()
Create a new empty DoubleColumn. |
|
DoubleColumn(int nrows)
Create a new DoubleColumn. |
|
DoubleColumn(int nrows,
int capacity,
double defaultValue)
Create a new DoubleColumn. |
|
| Method Summary | |
|---|---|
java.lang.Object |
get(int row)
Get the data value at the specified row |
double |
getDouble(int row)
Get the data value at the specified row as a double |
float |
getFloat(int row)
Get the data value at the specified row as a float |
int |
getInt(int row)
Get the data value at the specified row as an integer |
long |
getLong(int row)
Get the data value at the specified row as a long |
int |
getRowCount()
Returns the number of rows in this data column |
void |
set(java.lang.Object val,
int row)
Set the data value at the specified row |
void |
setDouble(double val,
int row)
Set the data value at the specified row as a double |
void |
setFloat(float val,
int row)
Set the data value at the specified row as a float |
void |
setInt(int val,
int row)
Set the data value at the specified row as an integer |
void |
setLong(long val,
int row)
Set the data value at the specified row as a long |
void |
setMaximumRow(int nrows)
Sets the number of rows in this data column |
| Methods inherited from class prefuse.data.column.AbstractColumn |
|---|
addColumnListener, canGet, canGetBoolean, canGetDate, canGetDouble, canGetFloat, canGetInt, canGetLong, canGetString, canSet, canSetBoolean, canSetDate, canSetDouble, canSetFloat, canSetInt, canSetLong, canSetString, fireColumnEvent, fireColumnEvent, fireColumnEvent, fireColumnEvent, fireColumnEvent, fireColumnEvent, fireColumnEvent, getBoolean, getColumnType, getDate, getDefaultValue, getParser, getString, isCellEditable, isReadOnly, removeColumnListener, revertToDefault, setBoolean, setDate, setDefaultValue, setParser, setReadOnly, setString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DoubleColumn()
public DoubleColumn(int nrows)
nrows - the initial size of the column
public DoubleColumn(int nrows,
int capacity,
double defaultValue)
nrows - the initial size of the columncapacity - the initial capacity of the columndefaultValue - the default value for the column| Method Detail |
|---|
public int getRowCount()
Column
Column.getRowCount()public void setMaximumRow(int nrows)
Column
nrows - the number of rowsColumn.setMaximumRow(int)public java.lang.Object get(int row)
Column
row - the row from which to retrieve the value
Column.get(int)
public void set(java.lang.Object val,
int row)
throws DataTypeException
Column
val - the value to setrow - the row at which to set the value
DataTypeExceptionColumn.set(java.lang.Object, int)
public double getDouble(int row)
throws DataTypeException
AbstractColumn
getDouble in interface ColumngetDouble in class AbstractColumnrow - the row from which to retrieve the value
DataTypeException - if this column does not
support the double typeAbstractColumn.getDouble(int)
public void setDouble(double val,
int row)
throws DataTypeException
AbstractColumn
setDouble in interface ColumnsetDouble in class AbstractColumnval - the value to setrow - the row at which to set the value
DataTypeException - if this column does not
support the double typeAbstractColumn.setDouble(double, int)
public int getInt(int row)
throws DataTypeException
AbstractColumn
getInt in interface ColumngetInt in class AbstractColumnrow - the row from which to retrieve the value
DataTypeException - if this column does not
support the integer typeColumn.getInt(int)
public void setInt(int val,
int row)
throws DataTypeException
AbstractColumn
setInt in interface ColumnsetInt in class AbstractColumnval - the value to setrow - the row at which to set the value
DataTypeException - if this column does not
support the integer typeColumn.setInt(int, int)
public long getLong(int row)
throws DataTypeException
AbstractColumn
getLong in interface ColumngetLong in class AbstractColumnrow - the row from which to retrieve the value
DataTypeException - if this column does not
support the long typeColumn.getLong(int)
public void setLong(long val,
int row)
throws DataTypeException
AbstractColumn
setLong in interface ColumnsetLong in class AbstractColumnval - the value to setrow - the row at which to set the value
DataTypeException - if this column does not
support the long typeColumn.setLong(long, int)
public float getFloat(int row)
throws DataTypeException
AbstractColumn
getFloat in interface ColumngetFloat in class AbstractColumnrow - the row from which to retrieve the value
DataTypeException - if this column does not
support the float typeColumn.getFloat(int)
public void setFloat(float val,
int row)
throws DataTypeException
AbstractColumn
setFloat in interface ColumnsetFloat in class AbstractColumnval - the value to setrow - the row at which to set the value
DataTypeException - if this column does not
support the float typeColumn.setFloat(float, int)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||