Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Package com.mockobjects.constraint

Interface Summary
Constraint A constraint over acceptable values.
 

Class Summary
And Calculates the logical conjunction of two constraints.
IsAnything A constraint that always returns true.
IsCloseTo Is the value a number equal to a value within some range of acceptable error?
IsEqual Is the value equal to another value, as tested by the Object.equals(java.lang.Object)>Object.equals(java.lang.Object) 55 method?
IsEventFrom Tests if the value is an event announced by a specific object.
IsGreaterThan Is the value greater than another java.lang.Comparable value?
IsInstanceOf Tests whether the value is an instance of a class.
IsLessThan Is the value less than another java.lang.Comparable value?
IsNot Calculates the logical negation of a constraint.
IsNull Is the value null?
IsSame Is the value the same object as another value?
Matches Is the value a string that matches a regular expression?
Or Calculates the logical disjunction of two constraints.