C# Класс 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.
Показать файл Открыть проект

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

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

Приватные методы

Метод Описание
PropertyConstraints ( ) : System

Private constructor.

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

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

Find an entry based on a string.
public FindEntry ( String v ) : PropertyEntry
v String The property to find.
Результат PropertyEntry

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

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.
Результат List

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

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.
Результат PropertyEntry