The Encog Project

org.encog.persist.persistors
Class ActivationBiPolarPersistor

java.lang.Object
  extended by org.encog.persist.persistors.ActivationBiPolarPersistor
All Implemented Interfaces:
Persistor

public class ActivationBiPolarPersistor
extends java.lang.Object
implements Persistor

The Encog persistor used to persist the ActivationBiPolar class.

Author:
jheaton

Constructor Summary
ActivationBiPolarPersistor()
           
 
Method Summary
 EncogPersistedObject load(ReadXML in)
          Load the specified Encog object from an XML reader.
 void save(EncogPersistedObject object, WriteXML out)
          Save the specified Encog object to an XML writer.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActivationBiPolarPersistor

public ActivationBiPolarPersistor()
Method Detail

load

public EncogPersistedObject load(ReadXML in)
Load the specified Encog object from an XML reader.

Specified by:
load in interface Persistor
Parameters:
in - The XML reader to use.
Returns:
The loaded object.

save

public void save(EncogPersistedObject object,
                 WriteXML out)
Save the specified Encog object to an XML writer.

Specified by:
save in interface Persistor
Parameters:
object - The object to save.
out - The XML writer to save to.

The Encog Project