Package chemaxon.struc
Enum Class MoleculeGraph.ValenceCheckState
- All Implemented Interfaces:
Serializable
,Comparable<MoleculeGraph.ValenceCheckState>
,java.lang.constant.Constable
- Enclosing class:
- MoleculeGraph
@Deprecated(forRemoval=true)
@SubjectToRemoval(date=JUL_01_2025)
public static enum MoleculeGraph.ValenceCheckState
extends Enum<MoleculeGraph.ValenceCheckState>
Deprecated, for removal: This API element is subject to removal in a future version.
Possible states of valence check:
- off: no check for all atoms
- ambiguousAromaticAtomsIgnored: no check for aromatic Nitrogen-like atoms atoms
- full: all atoms of the molecule are checked
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.As of Marvin 6.0, replaced byMoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
andValenceCheckOptions.DEFAULT
.
Usage:Deprecated.As of Marvin 6.0, replaced byMoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
.
Usage:Deprecated.As of Marvin 6.0, replaced byMoleculeGraph.setValenceCheckEnabled(boolean)
. -
Method Summary
Modifier and TypeMethodDescriptionprotected abstract void
checkValence
(MolAtom ma) Deprecated, for removal: This API element is subject to removal in a future version.protected abstract void
Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name.static MoleculeGraph.ValenceCheckState[]
values()
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
OFF
Deprecated.As of Marvin 6.0, replaced byMoleculeGraph.setValenceCheckEnabled(boolean)
. Usage:molecule.setValenceCheckEnabled(false);
-
AMBIGUOUS_AROMATIC_ATOMS_IGNORED
Deprecated.As of Marvin 6.0, replaced byMoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
andValenceCheckOptions.DEFAULT
.
Usage:molecule.setValenceCheckOptions(ValenceCheckOptions.DEFAULT);
-
FULL
Deprecated.As of Marvin 6.0, replaced byMoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
.
Usage:molecule.setValenceCheckOptions(new ValenceCheckOptions(false,true);
-
-
Method Details
-
values
Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
checkValence
Deprecated, for removal: This API element is subject to removal in a future version. -
checkValence
Deprecated, for removal: This API element is subject to removal in a future version.
-
MoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
andValenceCheckOptions
.