MoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
and
ValenceCheckOptions
.@Deprecated public static enum MoleculeGraph.ValenceCheckState extends Enum<MoleculeGraph.ValenceCheckState>
Enum Constant and Description |
---|
AMBIGUOUS_AROMATIC_ATOMS_IGNORED
Deprecated.
As of Marvin 6.0, replaced by
MoleculeGraph.setValenceCheckOptions(ValenceCheckOptions) and
ValenceCheckOptions.DEFAULT .Usage: molecule.setValenceCheckOptions(ValenceCheckOptions.DEFAULT); |
FULL
Deprecated.
As of Marvin 6.0, replaced by
MoleculeGraph.setValenceCheckOptions(ValenceCheckOptions) and
ValenceCheckOptions.ValenceCheckOptions(boolean, boolean) .Usage: molecule.setValenceCheckOptions(new ValenceCheckOptions(false,true); |
OFF
Deprecated.
As of Marvin 6.0, replaced by
MoleculeGraph.setValenceCheckEnabled(boolean) .
Usage:molecule.setValenceCheckEnabled(false); |
Modifier and Type | Method and Description |
---|---|
protected abstract void |
checkValence(MolAtom ma)
Deprecated.
|
protected abstract void |
checkValence(MoleculeGraph m)
Deprecated.
|
static MoleculeGraph.ValenceCheckState |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static MoleculeGraph.ValenceCheckState[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final MoleculeGraph.ValenceCheckState OFF
MoleculeGraph.setValenceCheckEnabled(boolean)
.
Usage:molecule.setValenceCheckEnabled(false);
@Deprecated public static final MoleculeGraph.ValenceCheckState AMBIGUOUS_AROMATIC_ATOMS_IGNORED
MoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
and
ValenceCheckOptions.DEFAULT
.molecule.setValenceCheckOptions(ValenceCheckOptions.DEFAULT);
@Deprecated public static final MoleculeGraph.ValenceCheckState FULL
MoleculeGraph.setValenceCheckOptions(ValenceCheckOptions)
and
ValenceCheckOptions.ValenceCheckOptions(boolean, boolean)
.molecule.setValenceCheckOptions(new ValenceCheckOptions(false,true);
public static MoleculeGraph.ValenceCheckState[] values()
for (MoleculeGraph.ValenceCheckState c : MoleculeGraph.ValenceCheckState.values()) System.out.println(c);
public static MoleculeGraph.ValenceCheckState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullprotected abstract void checkValence(MoleculeGraph m)
protected abstract void checkValence(MolAtom ma)