Method | Description | |
---|---|---|
Begin ( ) : void |
Begin an Encog document.
|
|
BeginObjects ( ) : void |
Begin the objects collection.
|
|
Close ( ) : void |
Close the writer.
|
|
End ( ) : void |
End the document.
|
|
EndObjects ( ) : void |
End the objects collection.
|
|
MergeObjects ( IPersistenceLocation location, String skip ) : void |
Merge the objects from this collection into the new one. Skip the specified object.
|
|
ModifyObject ( IPersistenceLocation location, String name, String newName, String newDesc ) : void |
Modify the specified object, such as changing its name or description.
|
|
PersistWriter ( IPersistenceLocation location ) : System |
Create a writer for the specified location.
|
|
WriteHeader ( ) : void |
Write the header for the Encog file.
|
|
WriteObject ( IEncogPersistedObject obj ) : void |
Write an object.
|
public MergeObjects ( IPersistenceLocation location, String skip ) : void | ||
location | IPersistenceLocation | The location to merge to. |
skip | String | The object to skip. |
return | void |
public ModifyObject ( IPersistenceLocation location, String name, String newName, String newDesc ) : void | ||
location | IPersistenceLocation | The location of the object being modified. |
name | String | The old name of the object being modified. |
newName | String | The new name of the object being modified. |
newDesc | String | The new description of the object being modified. |
return | void |
public PersistWriter ( IPersistenceLocation location ) : System | ||
location | IPersistenceLocation | The location. |
return | System |
public WriteObject ( IEncogPersistedObject obj ) : void | ||
obj | IEncogPersistedObject | The object to write. |
return | void |