Package chemaxon.standardizer.actions
Class AbsoluteStereoAction
- java.lang.Object
-
- chemaxon.standardizer.AbstractStandardizerAction
-
- chemaxon.standardizer.actions.AbsoluteStereoAction
-
- All Implemented Interfaces:
chemaxon.license.Licensable
,StandardizerAction
,PropertyChangeListener
,Cloneable
,EventListener
@Deprecated @PublicAPI public final class AbsoluteStereoAction extends AbstractStandardizerAction
Deprecated.useSetAbsoluteStereoAction
orRemoveAbsoluteStereoAction
insteadAbsolute stereo standardizer action- Since:
- 5.11
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AbsoluteStereoAction.Type
Deprecated.Type of absolute stereo action
-
Field Summary
Fields Modifier and Type Field Description static String
ACT_KEY
Deprecated.Key of type for parsing and property changestatic String
TYPE_KEY
Deprecated.Key of type for parsing and property change-
Fields inherited from class chemaxon.standardizer.AbstractStandardizerAction
CONFIG_PATH_KEY, FORMAT_KEY, ID_KEY, support
-
-
Constructor Summary
Constructors Constructor Description AbsoluteStereoAction(Map<String,String> params)
Deprecated.Initializes the action with parameters
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AbsoluteStereoAction
clone()
Deprecated.AbsoluteStereoAction.Type
getType()
Deprecated.Gets the type of absolute stereo actionvoid
setType(AbsoluteStereoAction.Type type)
Deprecated.Sets the type of absolute stereo actionprotected Changes
standardize1(Molecule molecule)
Deprecated.This method contains the current standardization mechanism.String
toString()
Deprecated.-
Methods inherited from class chemaxon.standardizer.AbstractStandardizerAction
addPropertyChangeListener, addPropertyChangeListener, anyBooleanPropertyTrue, cloneItem, getComponents, getDescriptor, getID, isActive, isAvailable, isLicensed, isValid, propertyChange, removePropertyChangeListener, removePropertyChangeListener, setActive, setID, setLicenseEnvironment, setValid, standardize
-
-
-
-
Field Detail
-
ACT_KEY
public static final String ACT_KEY
Deprecated.Key of type for parsing and property change- See Also:
- Constant Field Values
-
TYPE_KEY
public static final String TYPE_KEY
Deprecated.Key of type for parsing and property change- See Also:
- Constant Field Values
-
-
Method Detail
-
setType
public void setType(AbsoluteStereoAction.Type type)
Deprecated.Sets the type of absolute stereo action- Parameters:
type
- the type of absolute stereo action
-
getType
public AbsoluteStereoAction.Type getType()
Deprecated.Gets the type of absolute stereo action- Returns:
- the type of absolute stereo action
-
standardize1
protected Changes standardize1(Molecule molecule)
Deprecated.Description copied from class:AbstractStandardizerAction
This method contains the current standardization mechanism. Descendants needs to implement this method.
Special molecules containing more components (e.g.RgMolecule
,RxnMolecule
) are decomponented by the methodAbstractStandardizerAction.getComponents(Molecule)
, andAbstractStandardizerAction.standardize1(Molecule)
method is called on each component, before applied on the original molecule. If a descendant does not want this to occur, this method must be overridden.
Logs of standardization should be generated to aLogger
, that can be collected by usingStandardizerLogger.getLogger()
method.- Specified by:
standardize1
in classAbstractStandardizerAction
- Parameters:
molecule
- theMolecule
instance to be standardized- Returns:
- the changes applied on the molecule during the standardization process
-
clone
public AbsoluteStereoAction clone() throws CloneNotSupportedException
Deprecated.- Overrides:
clone
in classAbstractStandardizerAction
- Throws:
CloneNotSupportedException
-
toString
public String toString()
Deprecated.- Overrides:
toString
in classAbstractStandardizerAction
-
-