edu.udo.cs.yale.example
Class DoubleArrayDataRow

java.lang.Object
  extended by edu.udo.cs.yale.example.DoubleArrayDataRow
All Implemented Interfaces:
DataRow

public class DoubleArrayDataRow
extends java.lang.Object
implements DataRow

Implementation of DataRow that is backed by a double array.

Version:
$Id: DoubleArrayDataRow.java,v 2.11 2006/03/21 15:35:39 ingomierswa Exp $
Author:
Simon Fischer, Ingo Mierswa

Field Summary
private  double[] data
          Holds the data for all attributes.
 
Constructor Summary
DoubleArrayDataRow(double[] data)
          Creates a new data row backed by an primitive array.
 
Method Summary
 void ensureNumberOfColumns(int numberOfColumns)
          Creates a new array of the given size if necessary and copies the data into the new array.
 double get(Attribute attribute)
          Returns the desired data for the given attribute.
 void set(Attribute attribute, double value)
          Sets the given data for the given attribute.
 java.lang.String toString()
          Returns a string representation of the data row.
 void trim()
          Does nothing.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

data

private double[] data
Holds the data for all attributes.

Constructor Detail

DoubleArrayDataRow

public DoubleArrayDataRow(double[] data)
Creates a new data row backed by an primitive array.

Method Detail

get

public double get(Attribute attribute)
Returns the desired data for the given attribute.

Specified by:
get in interface DataRow


set

public void set(Attribute attribute,
                double value)
Sets the given data for the given attribute.

Specified by:
set in interface DataRow


ensureNumberOfColumns

public void ensureNumberOfColumns(int numberOfColumns)
Creates a new array of the given size if necessary and copies the data into the new array.

Specified by:
ensureNumberOfColumns in interface DataRow


trim

public void trim()
Does nothing.

Specified by:
trim in interface DataRow


toString

public java.lang.String toString()
Returns a string representation of the data row.

Overrides:
toString in class java.lang.Object



Copyright © 2001-2006