C# Класс Spring.Core.ComposedCriteria

A Spring.Core.ICriteria implementation that represents a composed collection of Spring.Core.ICriteria instances.
Наследование: ICriteria
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Add ( ICriteria criteria ) : void

Adds the supplied into the criteria composed within this instance.

ComposedCriteria ( ) : System.Collections.Generic

Creates a new instance of the ComposedCriteria class.

ComposedCriteria ( ICriteria criteria ) : System.Collections.Generic

Creates a new instance of the ComposedCriteria class.

IsSatisfied ( object datum ) : bool

Does the supplied datum satisfy the criteria encapsulated by this instance?

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

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

Adds the supplied into the criteria composed within this instance.
public Add ( ICriteria criteria ) : void
criteria ICriteria /// The to be added. ///
Результат void

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

Creates a new instance of the ComposedCriteria class.
public ComposedCriteria ( ) : System.Collections.Generic
Результат System.Collections.Generic

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

Creates a new instance of the ComposedCriteria class.
public ComposedCriteria ( ICriteria criteria ) : System.Collections.Generic
criteria ICriteria /// A user-defined (child) criteria that will be composed into this instance. ///
Результат System.Collections.Generic

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

Does the supplied datum satisfy the criteria encapsulated by this instance?
public IsSatisfied ( object datum ) : bool
datum object The data to be checked by this criteria instance.
Результат bool