Package chemaxon.descriptors
Interface MDHypothesisGenerator
-
@PublicAPI public interface MDHypothesisGenerator
Hypothesis generator interface. At first all MDSet elements, from which the hypothesis is to be generated, must be added, then the hypothesis MDSet is generated by calling generate().- Since:
- JChem 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(MDSet hypothesisComponent)
Adds a MDSet component to be considered in the hypothesis.MDSet
generate()
Generates hypothesis.String
getTypeName()
Returns type of generated hypothesis.
-
-
-
Method Detail
-
add
void add(MDSet hypothesisComponent)
Adds a MDSet component to be considered in the hypothesis.- Parameters:
hypothesisComponent
- MDSet to be considered in the hypothesis
-
generate
MDSet generate()
Generates hypothesis.- Returns:
- The generated hypothesis
-
getTypeName
String getTypeName()
Returns type of generated hypothesis.- Returns:
- type name of generated hypothesis.
-
-