Method | Description | |
---|---|---|
EncogDirectoryPersistence ( |
Construct the object.
|
|
GetEncogType ( String name ) : String |
Get the type of an Encog object in an EG file, without the need to read the entire file.
|
|
LoadFromDirectory ( String name ) : Object |
Load a file from the directory that this object refers to.
|
|
LoadObject ( |
Load the specified object.
|
|
LoadObject ( Stream mask0 ) : Object |
Load an object from an input stream.
|
|
SaveObject ( |
Save the specified object.
|
|
SaveObject ( Stream os, Object obj ) : void |
Save the specified object.
|
|
SaveToDirectory ( String name, Object obj ) : void |
Save a file to the directory that this object refers to.
|
Method | Description | |
---|---|---|
ReadLine ( Stream mask0 ) : String |
Read a line from the input stream.
|
public EncogDirectoryPersistence ( |
||
parent | The directory to use. | |
return | System |
public GetEncogType ( String name ) : String | ||
name | String | The filename to read. |
return | String |
public LoadFromDirectory ( String name ) : Object | ||
name | String | The name to load. |
return | Object |
public static LoadObject ( |
||
file | The file to load. | |
return | Object |
public static LoadObject ( Stream mask0 ) : Object | ||
mask0 | Stream | The input stream to read from. |
return | Object |
public static SaveObject ( |
||
filename | The filename to save to. | |
obj | Object | The Object to save. |
return | void |
public static SaveObject ( Stream os, Object obj ) : void | ||
os | Stream | The output stream to write to. |
obj | Object | The object to save. |
return | void |
public SaveToDirectory ( String name, Object obj ) : void | ||
name | String | The name to load. |
obj | Object | The object. |
return | void |