prefuse.data.column
Class FloatColumn

java.lang.Object
  extended by prefuse.data.column.AbstractColumn
      extended by prefuse.data.column.FloatColumn
All Implemented Interfaces:
Column

public class FloatColumn
extends AbstractColumn

Column instance for sotring flaot values.

Author:
jeffrey heer

Field Summary
 
Fields inherited from class prefuse.data.column.AbstractColumn
m_columnType, m_defaultValue, m_listeners, m_parser, m_readOnly
 
Constructor Summary
FloatColumn()
          Create a new empty FloatColumn.
FloatColumn(int nrows)
          Create a new FloatColumn.
FloatColumn(int nrows, int capacity, float defaultValue)
          Create a new FloatColumn.
 
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 setFloat(float val, int row)
          Set the data value at the specified row as a float
 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, setDouble, setInt, setLong, setParser, setReadOnly, setString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FloatColumn

public FloatColumn()
Create a new empty FloatColumn.


FloatColumn

public FloatColumn(int nrows)
Create a new FloatColumn.

Parameters:
nrows - the initial size of the column

FloatColumn

public FloatColumn(int nrows,
                   int capacity,
                   float defaultValue)
Create a new FloatColumn.

Parameters:
nrows - the initial size of the column
capacity - the initial capacity of the column
defaultValue - the default value for the column
Method Detail

getRowCount

public int getRowCount()
Description copied from interface: Column
Returns the number of rows in this data column

Returns:
the number of rows
See Also:
Column.getRowCount()

setMaximumRow

public void setMaximumRow(int nrows)
Description copied from interface: Column
Sets the number of rows in this data column

Parameters:
nrows - the number of rows
See Also:
Column.setMaximumRow(int)

get

public java.lang.Object get(int row)
Description copied from interface: Column
Get the data value at the specified row

Parameters:
row - the row from which to retrieve the value
Returns:
the data value
See Also:
Column.get(int)

set

public void set(java.lang.Object val,
                int row)
         throws DataTypeException
Description copied from interface: Column
Set the data value at the specified row

Parameters:
val - the value to set
row - the row at which to set the value
Throws:
DataTypeException
See Also:
Column.set(java.lang.Object, int)

getFloat

public float getFloat(int row)
               throws DataTypeException
Description copied from class: AbstractColumn
Get the data value at the specified row as a float

Specified by:
getFloat in interface Column
Overrides:
getFloat in class AbstractColumn
Parameters:
row - the row from which to retrieve the value
Returns:
the data value as a float
Throws:
DataTypeException - if this column does not support the float type
See Also:
AbstractColumn.getFloat(int)

setFloat

public void setFloat(float val,
                     int row)
              throws DataTypeException
Description copied from class: AbstractColumn
Set the data value at the specified row as a float

Specified by:
setFloat in interface Column
Overrides:
setFloat in class AbstractColumn
Parameters:
val - the value to set
row - the row at which to set the value
Throws:
DataTypeException - if this column does not support the float type
See Also:
AbstractColumn.setFloat(float, int)

getInt

public int getInt(int row)
           throws DataTypeException
Description copied from class: AbstractColumn
Get the data value at the specified row as an integer

Specified by:
getInt in interface Column
Overrides:
getInt in class AbstractColumn
Parameters:
row - the row from which to retrieve the value
Returns:
the data value as an integer
Throws:
DataTypeException - if this column does not support the integer type
See Also:
Column.getInt(int)

getLong

public long getLong(int row)
             throws DataTypeException
Description copied from class: AbstractColumn
Get the data value at the specified row as a long

Specified by:
getLong in interface Column
Overrides:
getLong in class AbstractColumn
Parameters:
row - the row from which to retrieve the value
Returns:
the data value as a long
Throws:
DataTypeException - if this column does not support the long type
See Also:
Column.getLong(int)

getDouble

public double getDouble(int row)
                 throws DataTypeException
Description copied from class: AbstractColumn
Get the data value at the specified row as a double

Specified by:
getDouble in interface Column
Overrides:
getDouble in class AbstractColumn
Parameters:
row - the row from which to retrieve the value
Returns:
the data value as a double
Throws:
DataTypeException - if this column does not support the double type
See Also:
Column.getDouble(int)


Copyright © 2007 Regents of the University of California