public class DebugAtomType extends AtomType implements IAtomType
IAtomType.HybridizationelectronValency, formalCharge, formalNeighbourCount, hybridizationexactMass, naturalAbundanceatomicNumber| Constructor and Description |
|---|
DebugAtomType(IElement element) |
DebugAtomType(String elementSymbol) |
DebugAtomType(String identifier,
String elementSymbol) |
| Modifier and Type | Method and Description |
|---|---|
void |
addListener(IChemObjectListener col)
Use this to add yourself to this IChemObject as a listener.
|
void |
addProperties(Map<Object,Object> properties)
Sets the properties of this object.
|
Object |
clone()
Clones this
IChemObject. |
Integer |
getAtomicNumber()
Returns the atomic number of this element.
|
String |
getAtomTypeName()
Gets the id attribute of the AtomType object.
|
Double |
getBondOrderSum()
Gets the bondOrderSum attribute of the AtomType object.
|
IChemObjectBuilder |
getBuilder()
Returns a
IChemObjectBuilder for the data classes that extend
this class. |
Double |
getCovalentRadius()
Returns the covalent radius for this AtomType.
|
Double |
getExactMass()
Gets the ExactMass attribute of the Isotope object.
|
boolean |
getFlag(int flagType)
Returns the value of a given flag.
|
boolean[] |
getFlags()
Returns the whole set of flags.
|
Integer |
getFormalCharge()
Returns the formal charge of this atom.
|
Integer |
getFormalNeighbourCount()
Returns the formal neighbour count of this atom.
|
IAtomType.Hybridization |
getHybridization()
Returns the hybridization of this atom.
|
String |
getID()
Returns the identifier (ID) of this object.
|
int |
getListenerCount()
Returns the number of ChemObjectListeners registered with this object.
|
Integer |
getMassNumber()
Returns the atomic mass of this element.
|
IBond.Order |
getMaxBondOrder()
Gets the MaxBondOrder attribute of the AtomType object.
|
Double |
getNaturalAbundance()
Gets the NaturalAbundance attribute of the Isotope object.
|
Map<Object,Object> |
getProperties()
Returns a Map with the IChemObject's properties.
|
<T> T |
getProperty(Object description)
Returns a property for the IChemObject.
|
String |
getSymbol()
Returns the element symbol of this element.
|
Integer |
getValency()
Gets the the exact electron valency of the AtomType object.
|
void |
notifyChanged()
This should be triggered by an method that changes the content of an object
to that the registered listeners can react to it.
|
void |
notifyChanged(IChemObjectChangeEvent evt)
This should be triggered by an method that changes the content of an object
to that the registered listeners can react to it.
|
void |
removeListener(IChemObjectListener col)
Use this to remove a ChemObjectListener from the ListenerList of this
IChemObject.
|
void |
removeProperty(Object description)
Removes a property for a IChemObject.
|
void |
setAtomicNumber(Integer atomicNumber)
Sets the atomic number of this element.
|
void |
setAtomTypeName(String identifier)
Sets the if attribute of the AtomType object.
|
void |
setBondOrderSum(Double bondOrderSum)
Sets the the exact bond order sum attribute of the AtomType object.
|
void |
setCovalentRadius(Double radius)
Sets the covalent radius for this AtomType.
|
void |
setExactMass(Double exactMass)
Sets the ExactMass attribute of the Isotope object.
|
void |
setFlag(int flagType,
boolean flagValue)
Sets the value of some flag.
|
void |
setFlags(boolean[] flagsNew)
Sets the whole set of flags.
|
void |
setFormalCharge(Integer charge)
Sets the formal charge of this atom.
|
void |
setFormalNeighbourCount(Integer count)
Sets the formal neighbour count of this atom.
|
void |
setHybridization(IAtomType.Hybridization hybridization)
Sets the hybridization of this atom.
|
void |
setID(String identifier)
Sets the identifier (ID) of this object.
|
void |
setMassNumber(Integer massNumber)
Sets the atomic mass of this element.
|
void |
setMaxBondOrder(IBond.Order maxBondOrder)
Sets the MaxBondOrder attribute of the AtomType object.
|
void |
setNaturalAbundance(Double naturalAbundance)
Sets the NaturalAbundance attribute of the Isotope object.
|
void |
setProperty(Object description,
Object property)
Sets a property for a IChemObject.
|
void |
setSymbol(String symbol)
Sets the element symbol of this element.
|
void |
setValency(Integer valency)
Sets the the exact electron valency of the AtomType object.
|
getFlagValue, getNotification, getProperty, setNotification, setProperties, shallowCopyequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitgetFlagValue, getNotification, getProperty, setNotification, setProperties, toStringpublic DebugAtomType(String elementSymbol)
public DebugAtomType(IElement element)
public Integer getAtomicNumber()
Once instantiated all field not filled by passing parameters to the constructor are null. Elements can be configured by using the IsotopeFactory.configure() method:
Element element = new Element("C");
IsotopeFactory if = IsotopeFactory.getInstance(element.getNewBuilder());
if.configure(element);
getAtomicNumber in interface IElementgetAtomicNumber in class ElementElement.setAtomicNumber(java.lang.Integer)public void setAtomicNumber(Integer atomicNumber)
setAtomicNumber in interface IElementsetAtomicNumber in class ElementatomicNumber - The atomic mass to be assigned to this elementElement.getAtomicNumber()public String getSymbol()
getSymbol in interface IElementgetSymbol in class ElementElement.setSymbol(java.lang.String)public void setSymbol(String symbol)
setSymbol in interface IElementsetSymbol in class Elementsymbol - The element symbol to be assigned to this atomElement.getSymbol()public void addListener(IChemObjectListener col)
addListener in interface IChemObjectaddListener in class ChemObjectcol - the ChemObjectListenerChemObject.removeListener(org.openscience.cdk.interfaces.IChemObjectListener)public int getListenerCount()
getListenerCount in interface IChemObjectgetListenerCount in class ChemObjectpublic void removeListener(IChemObjectListener col)
removeListener in interface IChemObjectremoveListener in class ChemObjectcol - The ChemObjectListener to be removedChemObject.addListener(org.openscience.cdk.interfaces.IChemObjectListener)public void notifyChanged()
notifyChanged in interface IChemObjectnotifyChanged in class ChemObjectpublic void notifyChanged(IChemObjectChangeEvent evt)
notifyChanged in interface IChemObjectnotifyChanged in class ChemObjectevt - A ChemObjectChangeEvent pointing to the source of where
the change happenedpublic void setProperty(Object description, Object property)
setProperty in interface IChemObjectsetProperty in class ChemObjectdescription - An object description of the property (most likely a
unique string)property - An object with the property itselfChemObject.getProperty(java.lang.Object),
ChemObject.removeProperty(java.lang.Object)public void removeProperty(Object description)
removeProperty in interface IChemObjectremoveProperty in class ChemObjectdescription - The object description of the property (most likely a
unique string)ChemObject.setProperty(java.lang.Object, java.lang.Object),
ChemObject.getProperty(java.lang.Object)public <T> T getProperty(Object description)
getProperty in interface IChemObjectgetProperty in class ChemObjectT - generic return typedescription - An object description of the property (most likely a
unique string)ChemObject.setProperty(java.lang.Object, java.lang.Object),
ChemObject.removeProperty(java.lang.Object)public Map<Object,Object> getProperties()
getProperties in interface IChemObjectgetProperties in class ChemObjectChemObject.addProperties(java.util.Map<java.lang.Object, java.lang.Object>)public String getID()
getID in interface IChemObjectgetID in class ChemObjectChemObject.setID(java.lang.String)public void setID(String identifier)
setID in interface IChemObjectsetID in class ChemObjectidentifier - a String representing the ID valueChemObject.getID()public void setFlag(int flagType,
boolean flagValue)
CDKConstants.ISAROMATIC
or CDKConstants.VISITED). The flags are
intrinsic internal properties and should not be used to store custom
values, please use IChemObject.setProperty(Object, Object).
// set this chem object to be aromatic
chemObject.setFlag(CDKConstants.ISAROMATIC, Boolean.TRUE);
// ...
// indicate we have visited this chem object
chemObject.setFlag(CDKConstants.VISITED, Boolean.TRUE);
setFlag in interface IChemObjectsetFlag in class ChemObjectflagType - flag to set the value forflagValue - value to assign to flagIChemObject.getFlag(int),
CDKConstantspublic boolean getFlag(int flagType)
CDKConstants.ISAROMATIC).
if(chemObject.getFlag(CDKConstants.ISAROMATIC)){
// handle aromatic flag on this chem object
}
getFlag in interface IChemObjectgetFlag in class ChemObjectflagType - flag to retrieve the value offlag_type is setIChemObject.setFlag(int, boolean),
CDKConstantspublic void addProperties(Map<Object,Object> properties)
addProperties in interface IChemObjectaddProperties in class ChemObjectproperties - a Hashtable specifying the property valuesChemObject.getProperties()public void setFlags(boolean[] flagsNew)
setFlags in interface IChemObjectsetFlags in class ChemObjectflagsNew - the new flags.ChemObject.getFlags()public boolean[] getFlags()
getFlags in interface IChemObjectgetFlags in class ChemObjectChemObject.setFlags(boolean[])public Object clone() throws CloneNotSupportedException
IChemObject. It clones the identifier, flags,
properties and pointer vectors. The ChemObjectListeners are not cloned, and
neither is the content of the pointer vectors.clone in interface IChemObjectclone in class AtomTypeCloneNotSupportedException - if the IChemObject cannot be clonedpublic IChemObjectBuilder getBuilder()
IChemObjectBuilder for the data classes that extend
this class.getBuilder in interface ICDKObjectgetBuilder in class ChemObjectIChemObjectBuilder matching this ICDKObjectpublic void setNaturalAbundance(Double naturalAbundance)
setNaturalAbundance in interface IIsotopesetNaturalAbundance in class IsotopenaturalAbundance - The new NaturalAbundance valueIsotope.getNaturalAbundance()public void setExactMass(Double exactMass)
setExactMass in interface IIsotopesetExactMass in class IsotopeexactMass - The new ExactMass valueIsotope.getExactMass()public Double getNaturalAbundance()
Once instantiated all field not filled by passing parameters to the constructor are null. Isotopes can be configured by using the IsotopeFactory.configure() method:
Isotope isotope = new Isotope("C", 13);
IsotopeFactory if = IsotopeFactory.getInstance(isotope.getNewBuilder());
if.configure(isotope);
getNaturalAbundance in interface IIsotopegetNaturalAbundance in class IsotopeIsotope.setNaturalAbundance(java.lang.Double)public Double getExactMass()
Once instantiated all field not filled by passing parameters to the constructor are null. Isotopes can be configured by using the IsotopeFactory.configure() method:
Isotope isotope = new Isotope("C", 13);
IsotopeFactory if = IsotopeFactory.getInstance(isotope.getNewBuilder());
if.configure(isotope);
getExactMass in interface IIsotopegetExactMass in class IsotopeIsotope.setExactMass(java.lang.Double)public Integer getMassNumber()
Once instantiated all field not filled by passing parameters to the constructor are null. Isotopes can be configured by using the IsotopeFactory.configure() method:
Isotope isotope = new Isotope("C", 13);
IsotopeFactory if = IsotopeFactory.getInstance(isotope.getNewBuilder());
if.configure(isotope);
getMassNumber in interface IIsotopegetMassNumber in class IsotopeIsotope.setMassNumber(Integer)public void setMassNumber(Integer massNumber)
setMassNumber in interface IIsotopesetMassNumber in class IsotopemassNumber - The atomic mass to be assigned to this elementIsotope.getMassNumber()public void setAtomTypeName(String identifier)
setAtomTypeName in interface IAtomTypesetAtomTypeName in class AtomTypeidentifier - The new AtomTypeID value. Null if unset.AtomType.getAtomTypeName()public void setMaxBondOrder(IBond.Order maxBondOrder)
setMaxBondOrder in interface IAtomTypesetMaxBondOrder in class AtomTypemaxBondOrder - The new MaxBondOrder valueAtomType.getMaxBondOrder()public void setBondOrderSum(Double bondOrderSum)
setBondOrderSum in interface IAtomTypesetBondOrderSum in class AtomTypebondOrderSum - The new bondOrderSum valueAtomType.getBondOrderSum()public String getAtomTypeName()
getAtomTypeName in interface IAtomTypegetAtomTypeName in class AtomTypeAtomType.setAtomTypeName(java.lang.String)public IBond.Order getMaxBondOrder()
getMaxBondOrder in interface IAtomTypegetMaxBondOrder in class AtomTypeAtomType.setMaxBondOrder(org.openscience.cdk.interfaces.IBond.Order)public Double getBondOrderSum()
getBondOrderSum in interface IAtomTypegetBondOrderSum in class AtomTypeAtomType.setBondOrderSum(java.lang.Double)public void setFormalCharge(Integer charge)
setFormalCharge in interface IAtomTypesetFormalCharge in class AtomTypecharge - The formal chargeAtomType.getFormalCharge()public Integer getFormalCharge()
getFormalCharge in interface IAtomTypegetFormalCharge in class AtomTypeAtomType.setFormalCharge(java.lang.Integer)public void setFormalNeighbourCount(Integer count)
setFormalNeighbourCount in interface IAtomTypesetFormalNeighbourCount in class AtomTypecount - The neighbour countAtomType.getFormalNeighbourCount()public Integer getFormalNeighbourCount()
getFormalNeighbourCount in interface IAtomTypegetFormalNeighbourCount in class AtomTypeAtomType.setFormalNeighbourCount(java.lang.Integer)public void setHybridization(IAtomType.Hybridization hybridization)
setHybridization in interface IAtomTypesetHybridization in class AtomTypehybridization - The hybridizationAtomType.getHybridization()public IAtomType.Hybridization getHybridization()
getHybridization in interface IAtomTypegetHybridization in class AtomTypeAtomType.setHybridization(org.openscience.cdk.interfaces.IAtomType.Hybridization)public void setCovalentRadius(Double radius)
setCovalentRadius in interface IAtomTypesetCovalentRadius in class AtomTyperadius - The covalent radius for this AtomTypeAtomType.getCovalentRadius()public Double getCovalentRadius()
getCovalentRadius in interface IAtomTypegetCovalentRadius in class AtomTypeAtomType.setCovalentRadius(java.lang.Double)public void setValency(Integer valency)
setValency in interface IAtomTypesetValency in class AtomTypevalency - The new valency valueAtomType.getValency()public Integer getValency()
getValency in interface IAtomTypegetValency in class AtomTypeAtomType.setValency(java.lang.Integer)Copyright © 2018. All Rights Reserved.