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
Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method 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 method

Clone this object.
public Clone ( ) : object
return object

CreatePersistor() public method

A persistor for the property data.
public CreatePersistor ( ) : IPersistor
return IPersistor

GetDate() public method

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

GetDouble() public method

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

GetInteger() public method

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

IsDefined() public method

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

Remove() public method

Remove the specified property.
public Remove ( String key ) : void
key String The property to remove.
return void

this() public method

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