C# Class Encog.Neural.Data.XML.PropertyData

An Encog data object that can be used to hold property data. This is a collection of name-value pairs that can be saved in an Encog persisted file.
Inheritance: Encog.Persist.BasicPersistedObject
Afficher le fichier Open project: encog/encog-silverlight-core Class Usage Examples

Méthodes publiques

Méthode Description
Clone ( ) : object

Clone this object.

CreatePersistor ( ) : IPersistor

A persistor for the property data.

GetDate ( String field ) : System.DateTime

Get a property as a date.

GetDouble ( String field ) : double

Get a property as a double.

GetInteger ( String field ) : int

Get a property as an integer.

IsDefined ( String key ) : bool

Determine of the specified property is defined.

Remove ( String key ) : void

Remove the specified property.

this ( String key ) : String

Access one of the property items.

Method Details

Clone() public méthode

Clone this object.
public Clone ( ) : object
Résultat object

CreatePersistor() public méthode

A persistor for the property data.
public CreatePersistor ( ) : IPersistor
Résultat IPersistor

GetDate() public méthode

Get a property as a date.
public GetDate ( String field ) : System.DateTime
field String The name of the field.
Résultat System.DateTime

GetDouble() public méthode

Get a property as a double.
public GetDouble ( String field ) : double
field String The name of the field.
Résultat double

GetInteger() public méthode

Get a property as an integer.
public GetInteger ( String field ) : int
field String The name of the field.
Résultat int

IsDefined() public méthode

Determine of the specified property is defined.
public IsDefined ( String key ) : bool
key String The property to check.
Résultat bool

Remove() public méthode

Remove the specified property.
public Remove ( String key ) : void
key String The property to remove.
Résultat void

this() public méthode

Access one of the property items.
public this ( String key ) : String
key String The key to look up.
Résultat String