Uses of Class
prefuse.data.DataTypeException

Packages that use DataTypeException
prefuse.data.column Data columns for storing typed data within a data table.  
 

Uses of DataTypeException in prefuse.data.column
 

Methods in prefuse.data.column that throw DataTypeException
 void IntColumn.set(java.lang.Object val, int row)
           
 int IntColumn.getInt(int row)
           
 void IntColumn.setInt(int val, int row)
           
 long IntColumn.getLong(int row)
           
 float IntColumn.getFloat(int row)
           
 double IntColumn.getDouble(int row)
           
 void ByteColumn.set(java.lang.Object val, int row)
           
 byte ByteColumn.getByte(int row)
           
 int ByteColumn.getInt(int row)
           
 void ByteColumn.setInt(int val, int row)
           
 long ByteColumn.getLong(int row)
           
 float ByteColumn.getFloat(int row)
           
 double ByteColumn.getDouble(int row)
           
 void FloatColumn.set(java.lang.Object val, int row)
           
 float FloatColumn.getFloat(int row)
           
 void FloatColumn.setFloat(float val, int row)
           
 int FloatColumn.getInt(int row)
           
 long FloatColumn.getLong(int row)
           
 double FloatColumn.getDouble(int row)
           
 void BooleanColumn.set(java.lang.Object val, int row)
           
 boolean BooleanColumn.getBoolean(int row)
           
 void BooleanColumn.setBoolean(boolean val, int row)
           
 void ExpressionColumn.set(java.lang.Object val, int row)
           
 boolean ExpressionColumn.getBoolean(int row)
           
 int ExpressionColumn.getInt(int row)
           
 double ExpressionColumn.getDouble(int row)
           
 float ExpressionColumn.getFloat(int row)
           
 long ExpressionColumn.getLong(int row)
           
 void LongColumn.set(java.lang.Object val, int row)
           
 long LongColumn.getLong(int row)
           
 void LongColumn.setLong(long val, int row)
           
 int LongColumn.getInt(int row)
           
 float LongColumn.getFloat(int row)
           
 double LongColumn.getDouble(int row)
           
 void ConstantColumn.set(java.lang.Object val, int row)
          Unsupported operation.
 void Column.set(java.lang.Object val, int row)
          Set the data value at the specified row
 int Column.getInt(int row)
          Get the data value at the specified row as an integer
 void Column.setInt(int val, int row)
          Set the data value at the specified row as an integer
 long Column.getLong(int row)
          Get the data value at the specified row as a long
 void Column.setLong(long val, int row)
          Set the data value at the specified row as a long
 float Column.getFloat(int row)
          Get the data value at the specified row as a float
 void Column.setFloat(float val, int row)
          Set the data value at the specified row as a float
 double Column.getDouble(int row)
          Get the data value at the specified row as a double
 void Column.setDouble(double val, int row)
          Set the data value at the specified row as a double
 boolean Column.getBoolean(int row)
          Get the data value at the specified row as a boolean
 void Column.setBoolean(boolean val, int row)
          Set the data value at the specified row as a boolean
 java.lang.String Column.getString(int row)
          Get the data value at the specified row as a String
 void Column.setString(java.lang.String val, int row)
          Set the data value at the specified row as a String
 java.util.Date Column.getDate(int row)
          Get the data value at the specified row as a Date
 void Column.setDate(java.util.Date val, int row)
          Set the data value at the specified row as a Date
 void DoubleColumn.set(java.lang.Object val, int row)
           
 double DoubleColumn.getDouble(int row)
           
 void DoubleColumn.setDouble(double val, int row)
           
 int DoubleColumn.getInt(int row)
           
 void DoubleColumn.setInt(int val, int row)
           
 long DoubleColumn.getLong(int row)
           
 void DoubleColumn.setLong(long val, int row)
           
 float DoubleColumn.getFloat(int row)
           
 void DoubleColumn.setFloat(float val, int row)
           
 void DateColumn.set(java.lang.Object val, int row)
           
 long DateColumn.getLong(int row)
           
 void DateColumn.setLong(long val, int row)
           
 double DateColumn.getDouble(int row)
           
 int AbstractColumn.getInt(int row)
          Get the data value at the specified row as an integer
 void AbstractColumn.setInt(int val, int row)
          Set the data value at the specified row as an integer
 long AbstractColumn.getLong(int row)
          Get the data value at the specified row as a long
 void AbstractColumn.setLong(long val, int row)
          Set the data value at the specified row as a long
 float AbstractColumn.getFloat(int row)
          Get the data value at the specified row as a float
 void AbstractColumn.setFloat(float val, int row)
          Set the data value at the specified row as a float
 double AbstractColumn.getDouble(int row)
          Get the data value at the specified row as a double
 void AbstractColumn.setDouble(double val, int row)
          Set the data value at the specified row as a double
 boolean AbstractColumn.getBoolean(int row)
          Get the data value at the specified row as a boolean
 void AbstractColumn.setBoolean(boolean val, int row)
          Set the data value at the specified row as a boolean
 java.lang.String AbstractColumn.getString(int row)
          Get the data value at the specified row as a String
 void AbstractColumn.setString(java.lang.String val, int row)
          Set the data value at the specified row as a String
 java.util.Date AbstractColumn.getDate(int row)
          Get the data value at the specified row as a Date
 void AbstractColumn.setDate(java.util.Date val, int row)
          Set the data value at the specified row as a Date
 



Copyright ? 2007 Regents of the University of California