Uses of Class
org.springframework.rules.closure.support.AlgorithmsAccessor

Packages that use AlgorithmsAccessor
org.springframework.richclient.samples.simple.domain   
org.springframework.rules Core interfaces for the expression and function object/rules library. 
org.springframework.rules.closure Out of the box functions that address common needs. 
org.springframework.rules.closure.support Closure and constraint function object core support implementations. 
org.springframework.rules.constraint Out of the box predicates that address common needs such as comparison and composition. 
org.springframework.rules.constraint.property Out of the box predicates and constraint building blocks involving bean properties. 
org.springframework.rules.factory Factories for creating rules. 
org.springframework.rules.metadata   
org.springframework.rules.support   
 

Uses of AlgorithmsAccessor in org.springframework.richclient.samples.simple.domain
 

Subclasses of AlgorithmsAccessor in org.springframework.richclient.samples.simple.domain
 class SimpleValidationRulesSource
          This class is a source for validation rules associated with the domain objects in this application.
 

Uses of AlgorithmsAccessor in org.springframework.rules
 

Subclasses of AlgorithmsAccessor in org.springframework.rules
 class Rules
          A factory for creating rules.
 

Uses of AlgorithmsAccessor in org.springframework.rules.closure
 

Subclasses of AlgorithmsAccessor in org.springframework.rules.closure
 class AbstractBinaryClosure
          Conveneince support class for binary closures.
 class Maximum
          Returns the maximum of two Comparable objects; with nulls regarded a being less than non null.
 class Minimum
          Returns the maximum of two Comparable objects; with nulls regarded a being less than non null.
 class StringLength
          Returns the Integer length of an object's string form, or zero if the object is null.
 class StringTrimmer
          Returns a trimmed copy of the string form of an object.
 

Uses of AlgorithmsAccessor in org.springframework.rules.closure.support
 

Subclasses of AlgorithmsAccessor in org.springframework.rules.closure.support
 class AbstractClosure
          Convenience implementation for the closure interface.
 class Block
          Convenient super class for closures that encapsulate a block of executable code.
 class IfBlock
          Only execute the specified closure if a provided constraint is also true.
 class NoArgBlock
          Simple implementation of AbstractClosure: makes it easy to just execute a block of code without any additional parameters.
 

Uses of AlgorithmsAccessor in org.springframework.rules.constraint
 

Subclasses of AlgorithmsAccessor in org.springframework.rules.constraint
 class AbstractBinaryConstraint
           
 class AbstractConstraint
           
 class And
          A "and" compound constraint (aka conjunction).
 class ComparisonBinaryPredicate
          Abstract helper superclass for binary predicates involved in comparison operations.
 class CompoundConstraint
          Abstract base class for unary constraints which compose other constraints.
 class ConstraintsAccessor
          A convenience constraints factory accessor for easy subclassing.
 class EqualTo
          Constraint that tests object equality (not identity.)
 class GreaterThan
          Predicate that tests if one comparable object is greater than another.
 class GreaterThanEqualTo
          Predicate that tests if one comparable object is greater than or equal to another.
 class IfTrue
           
 class LessThan
          Predicate that tests if one comparable object is less than another.
 class LessThanEqualTo
          Predicate that tests if one comparable object is less than or equal to another.
 class Or
          A "or" compound constraint (aka disjunction).
 class Range
          A range whose edges are defined by a minimum Comparable and a maximum Comparable.
 class StringLengthConstraint
          Constraint to validate an object's string length.
 class WildcardConstraint
          Always returns true; a wildcard match
 class XOr
          A "xor" compound constraint (aka exclusive disjunction).
 

Uses of AlgorithmsAccessor in org.springframework.rules.constraint.property
 

Subclasses of AlgorithmsAccessor in org.springframework.rules.constraint.property
 class UniquePropertyValueConstraint
           
 

Uses of AlgorithmsAccessor in org.springframework.rules.factory
 

Subclasses of AlgorithmsAccessor in org.springframework.rules.factory
 class Closures
          A factory for easing the construction and composition of closure (blocks of executable code).
 class Constraints
          A factory for easing the construction and composition of constraints.
 class PropertyConstraints
          Helper class for creating and composing constraints for a single domain object property.
 

Uses of AlgorithmsAccessor in org.springframework.rules.metadata
 

Subclasses of AlgorithmsAccessor in org.springframework.rules.metadata
 class AttributesRulesSource
          An implementation of RulesSource that loads rules using metadata.
 

Uses of AlgorithmsAccessor in org.springframework.rules.support
 

Subclasses of AlgorithmsAccessor in org.springframework.rules.support
 class DefaultRulesSource
          A default rules source implementation which is simply a in-memory registry for bean validation rules backed by a map.
 



Copyright © 2004-2009 The Spring Framework. All Rights Reserved.