C# Class Encog.App.Analyst.Script.Prop.PropertyConstraints

Holds constant type information for each of the properties that the script might have. This constant information allows values to be validated. This class is a singleton.
Datei anzeigen Open project: encog/encog-silverlight-core

Public Methods

Method Description
FindEntry ( String v ) : PropertyEntry

Find an entry based on a string.

GetEntries ( String section, String subSection ) : List

Get all entries for a section/subsection.

GetEntry ( String section, String subSection, String name ) : PropertyEntry

Get a single property entry. If the section and subsection do not exist, an error is thrown.

Private Methods

Method Description
PropertyConstraints ( ) : System

Private constructor.

Method Details

FindEntry() public method

Find an entry based on a string.
public FindEntry ( String v ) : PropertyEntry
v String The property to find.
return PropertyEntry

GetEntries() public method

Get all entries for a section/subsection.
public GetEntries ( String section, String subSection ) : List
section String The section to find.
subSection String The subsection to find.
return List

GetEntry() public method

Get a single property entry. If the section and subsection do not exist, an error is thrown.
public GetEntry ( String section, String subSection, String name ) : PropertyEntry
section String The section.
subSection String The subsection.
name String The name of the property.
return PropertyEntry