C# 클래스 Encog.Persist.Persistors.Generic.ObjectTagger

The object tagger is used in generic persistence to tag objects with a reference number.
파일 보기 프로젝트 열기: encog/encog-silverlight-core

공개 메소드들

메소드 설명
Analyze ( IEncogPersistedObject encogObject ) : void

Analyze the specified object and build a reference map.

Clear ( ) : void

Clear the map and current id.

GetReference ( Object obj ) : int

Get the reference for the specified object.

HasReference ( Object obj ) : bool

Returns true if the object has a reference.

비공개 메소드들

메소드 설명
AssignObjectTag ( Object obj ) : void

Assign a reference number to the specified object.

TagCollection ( ICollection value ) : void

Tag a collection, every object in the collection will be a reference.

TagField ( Object fieldObject ) : void

Tag a field.

TagObject ( Object parentObject ) : void

Tag an object.

메소드 상세

Analyze() 공개 메소드

Analyze the specified object and build a reference map.
public Analyze ( IEncogPersistedObject encogObject ) : void
encogObject IEncogPersistedObject The object to analyze.
리턴 void

Clear() 공개 메소드

Clear the map and current id.
public Clear ( ) : void
리턴 void

GetReference() 공개 메소드

Get the reference for the specified object.
public GetReference ( Object obj ) : int
obj Object The object to check.
리턴 int

HasReference() 공개 메소드

Returns true if the object has a reference.
public HasReference ( Object obj ) : bool
obj Object The object to check.
리턴 bool