C# Класс 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.
Наследование: Encog.Persist.BasicPersistedObject
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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.

Описание методов

Clone() публичный Метод

Clone this object.
public Clone ( ) : object
Результат object

CreatePersistor() публичный Метод

A persistor for the property data.
public CreatePersistor ( ) : IPersistor
Результат IPersistor

GetDate() публичный Метод

Get a property as a date.
public GetDate ( String field ) : System.DateTime
field String The name of the field.
Результат System.DateTime

GetDouble() публичный Метод

Get a property as a double.
public GetDouble ( String field ) : double
field String The name of the field.
Результат double

GetInteger() публичный Метод

Get a property as an integer.
public GetInteger ( String field ) : int
field String The name of the field.
Результат int

IsDefined() публичный Метод

Determine of the specified property is defined.
public IsDefined ( String key ) : bool
key String The property to check.
Результат bool

Remove() публичный Метод

Remove the specified property.
public Remove ( String key ) : void
key String The property to remove.
Результат void

this() публичный Метод

Access one of the property items.
public this ( String key ) : String
key String The key to look up.
Результат String