java.lang.Object
dev.civl.sarl.IF.number.NumberFactory.IntervalUnion
- Enclosing interface:
NumberFactory
A simple type for recording the result of attempting to take the union of
two intervals i1 and i2. There are three possibilities:
- the union of the two intervals is an interval. In this case,
status=0andunionis the union of the two intervals. - i1 is strictly less than i2 and the union is not an interval. In this
case,
status<0andunionisnull. - i1 is strictly greater than i2 and the union is not an interval. In
this case,
status>0andunionisnull.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
status
public int status -
union
-
-
Constructor Details
-
IntervalUnion
public IntervalUnion()
-