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
파일 보기 프로젝트 열기: encog/encog-silverlight-core 1 사용 예제들

공개 메소드들

메소드 설명
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