Package org.jacop.floats.core
Class FloatIntervalEnumeration
- java.lang.Object
-
- org.jacop.floats.core.FloatIntervalEnumeration
-
- All Implemented Interfaces:
java.util.Enumeration<FloatInterval>
- Direct Known Subclasses:
FloatIntervalDomainIntervalEnumeration
public abstract class FloatIntervalEnumeration extends java.lang.Object implements java.util.Enumeration<FloatInterval>
Defines a methods for enumerating values contain in the intersal domain. It implements the interface Enumeration.- Version:
- 4.8
-
-
Constructor Summary
Constructors Constructor Description FloatIntervalEnumeration()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract boolean
hasMoreElements()
abstract FloatInterval
nextElement()
-
-
-
Method Detail
-
hasMoreElements
public abstract boolean hasMoreElements()
- Specified by:
hasMoreElements
in interfacejava.util.Enumeration<FloatInterval>
- Returns:
- true if there are more elements to enumerate.
-
nextElement
public abstract FloatInterval nextElement()
- Specified by:
nextElement
in interfacejava.util.Enumeration<FloatInterval>
- Returns:
- next interval.
-
-