C# Class Encog.Persist.DirectoryEntry

The idea of the Encog persisted collection is that the entire file might be quite long and should not be read into memory in its entirity. Directory entry classes allow you to list the contents of a file without loading the entire file.
Inheritance: IComparable
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
CompareTo ( Object other ) : int

Compare the two objects.

DirectoryEntry ( IEncogPersistedObject obj ) : System

Construct a directory entry for the specified object.

DirectoryEntry ( String type, String name, String description ) : System

Construct a directory entry from strings.

Equals ( Object other ) : bool

Returns true if the two objects are equal.

GetHashCode ( ) : int

Create a simple hash code for this object.

ToString ( ) : String

Convert the object to a string.

Method Details

CompareTo() public méthode

Compare the two objects.
public CompareTo ( Object other ) : int
other Object The other object.
Résultat int

DirectoryEntry() public méthode

Construct a directory entry for the specified object.
public DirectoryEntry ( IEncogPersistedObject obj ) : System
obj IEncogPersistedObject The Encog object.
Résultat System

DirectoryEntry() public méthode

Construct a directory entry from strings.
public DirectoryEntry ( String type, String name, String description ) : System
type String The type of object.
name String The name of this object.
description String The description for this object.
Résultat System

Equals() public méthode

Returns true if the two objects are equal.
public Equals ( Object other ) : bool
other Object The other object.
Résultat bool

GetHashCode() public méthode

Create a simple hash code for this object.
public GetHashCode ( ) : int
Résultat int

ToString() public méthode

Convert the object to a string.
public ToString ( ) : String
Résultat String