Package chemaxon.reaction
Interface ReactantSetEnumeration
-
@PublicAPI @Deprecated public interface ReactantSetEnumeration
Deprecated.Enumerates reactant sets forReactor
. Usage: seeConcurrentReactorProcessor.setReactantSetEnumerator(ReactantSetEnumeration)
.- Since:
- JChem 5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description double
getProgress()
Deprecated.Returns a number between 0 and 1 that indicates the status of the enumeration progress.boolean
hasNext()
Deprecated.Tests if this enumeration contains more reactant sets.Molecule[]
next()
Deprecated.Returns the next reactant set if this enumeration has at least one more reactant set to provide.
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Deprecated.Tests if this enumeration contains more reactant sets.- Returns:
true
if and only if this enumeration contains at least one more element to provide;false
otherwise.
-
next
Molecule[] next()
Deprecated.Returns the next reactant set if this enumeration has at least one more reactant set to provide.- Returns:
- the next reactant set
- Throws:
NoSuchElementException
- if an error stopped the enumeration
-
getProgress
double getProgress()
Deprecated.Returns a number between 0 and 1 that indicates the status of the enumeration progress.- Returns:
- a number that indicates the status of the enumeration progress
-
-