org.picocontainer.gems.constraints |
|
Java Source File Name | Type | Comment |
AbstractConstraint.java | Class | Base class for parameter constraints. |
And.java | Class | Aggregates multiple constraints together using boolean AND logic. |
Anything.java | Class | A constraint that matches any component adapter. |
CollectionConstraint.java | Class | Constraint that collects/aggregates dependencies to as many components
that satisfy the given constraint. |
Constraint.java | Interface | Extension to
org.picocontainer.Parameter that allows for
constraint-based configuration of component parameters. |
IsExactType.java | Class | Constraint that only accepts an adapter whose implementation is the same
class instance as the type represented by this object. |
IsKey.java | Class | Constraint that accepts an adapter of a specific key. |
IsKeyType.java | Class | Constraint that accepts an adapter whose key type is either the
same type or a subtype of the type(s) represented by this object. |
IsType.java | Class | Constraint that accepts an adapter whose implementation is either the
same type or a subtype of the type(s) represented by this object. |
Not.java | Class | Inverts the logical sense of the given constraint. |
Or.java | Class | Aggregates multiple constraints together using boolean OR logic. |