@PublicAPI public enum SearchMode extends java.lang.Enum<SearchMode>
MaxCommonSubstructure
(MCS) algorithms. The applied mode controls the running
time and the accuracy of the heuristic algorithms.MaxCommonSubstructure.setSearchMode(SearchMode)
Enum Constant and Description |
---|
FAST
Fast search mode.
|
NORMAL
Normal search mode.
|
Modifier and Type | Method and Description |
---|---|
static SearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchMode NORMAL
public static final SearchMode FAST
NORMAL
search mode, but could find smaller common substructures
(especially for large molecules).public static SearchMode[] values()
for (SearchMode c : SearchMode.values()) System.out.println(c);
public static SearchMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null