javax.datamining.data
Interface PhysicalDataRecordFactory

All Superinterfaces:
Factory

public interface PhysicalDataRecordFactory
extends Factory

A factory class that creates instances of PhysicalDataRecord.

Author:
JSR-73 Java Data Mining Expert Group
See Also:
Factory

Method Summary
 PhysicalDataRecord create()
          Creates an empty instance of PhysicalDataRecord.
 PhysicalDataRecord create(ModelSignature signature)
          Creates an instance of PhysicalDataRecord and populates it with PhysicalAttribute imported from the specified ModelSignature.
 

Method Detail

create

public PhysicalDataRecord create()
                          throws JDMException
Creates an empty instance of PhysicalDataRecord.

Returns:
PhysicalDataRecord
Throws:
JDMException

create

public PhysicalDataRecord create(ModelSignature signature)
                          throws JDMException
Creates an instance of PhysicalDataRecord and populates it with PhysicalAttribute imported from the specified ModelSignature. All data values are set to null.

Parameters:
signature -
Returns:
PhysicalDataRecord
Throws:
JDMException