All Packages Class Hierarchy This Package Previous Next Index
Class sep.io.DataKeeperJ
java.lang.Object
|
+----sep.io.DataKeeperJ
- public class DataKeeperJ
- extends Object
This class stores and retrieves the data values that underlie a
regular data set.
Bugs:
All methods should probably be protected (only accessible through
RegularData.
The data should be able to hold everything, not only floats.
-
DataKeeperJ(float[])
- to write out usually (not sure if needed)
-
DataKeeperJ(float[][])
-
-
DataKeeperJ(float[][][])
-
-
DataKeeperJ(float[][][][])
-
-
DataKeeperJ(float[][][][][])
-
-
DataKeeperJ(float[][][][][][])
-
-
DataKeeperJ(int[])
- to read prepare the DataKeeperJ to read in data
-
equals(DataKeeperJ)
-
-
getData()
- is this used anywhere?
-
getDimension()
-
-
read(DataInputStream)
- Ask Joel if he knows how to do the runtime assignment of an array
to an object of type Object
-
setData(float[])
-
-
setData(float[][])
-
-
setData(float[][][])
-
-
setData(float[][][][])
-
-
setData(float[][][][][])
-
-
setData(float[][][][][][])
-
-
toString()
- Returns a string representation of the object.
-
write(DataOutputStream)
-
-
write(float[], DataOutputStream)
-
DataKeeperJ
public DataKeeperJ(int n[])
- to read prepare the DataKeeperJ to read in data
DataKeeperJ
public DataKeeperJ(float data[])
- to write out usually (not sure if needed)
DataKeeperJ
public DataKeeperJ(float data[][])
DataKeeperJ
public DataKeeperJ(float data[][][])
DataKeeperJ
public DataKeeperJ(float data[][][][])
DataKeeperJ
public DataKeeperJ(float data[][][][][])
DataKeeperJ
public DataKeeperJ(float data[][][][][][])
read
public void read(DataInputStream dinstr) throws IOException
- Ask Joel if he knows how to do the runtime assignment of an array
to an object of type Object
write
public void write(float data[],
DataOutputStream dout) throws IOException
write
public void write(DataOutputStream dout) throws IOException
toString
public String toString()
- Returns a string representation of the object.
- Overrides:
- toString in class Object
equals
public boolean equals(DataKeeperJ para)
getData
public Object getData()
- is this used anywhere?
setData
public void setData(float data[])
setData
public void setData(float data[][])
setData
public void setData(float data[][][])
setData
public void setData(float data[][][][])
setData
public void setData(float data[][][][][])
setData
public void setData(float data[][][][][][])
getDimension
public int getDimension()
All Packages Class Hierarchy This Package Previous Next Index